aboutsummaryrefslogtreecommitdiff
path: root/src/property/os.lisp
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-03-17 21:02:38 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-03-18 09:55:57 -0700
commit18bbd370b56ba080a4d64545ed66f31d49e1b442 (patch)
treeaf1434b06ce7379d6b683dceb50d17cee4e2fa7f /src/property/os.lisp
parent2403f5c0a09915cd1100159953fa8430f0417ced (diff)
downloadconsfigurator-18bbd370b56ba080a4d64545ed66f31d49e1b442.tar.gz
tidy up signalling INAPPLICABLE-PROPERTY and FAILED-CHANGE
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src/property/os.lisp')
-rw-r--r--src/property/os.lisp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/property/os.lisp b/src/property/os.lisp
index 6a23e97..67d0ebd 100644
--- a/src/property/os.lisp
+++ b/src/property/os.lisp
@@ -97,8 +97,7 @@
Used in property :HOSTATTRS subroutines."
(let ((os (class-of (get-hostattrs-car :os))))
(unless (and os (subtypep os type))
- (error 'inapplicable-property
- :text #?"Property requires OS of type ${type}"))))
+ (inapplicable-property #?"Property requires OS of type ${type}"))))
(defun supports-arch-p (os arch)
"Can binaries of type ARCH run on OS?"