[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: scripts: environment: Return the exit status of the command.
From: |
Cyril Roelandt |
Subject: |
01/01: scripts: environment: Return the exit status of the command. |
Date: |
Thu, 02 Jul 2015 19:48:19 +0000 |
steap pushed a commit to branch master
in repository guix.
commit d2cef629fd5856540f6e1edf8f9d2131ec7a6942
Author: Cyril Roelandt <address@hidden>
Date: Wed Jul 1 22:55:47 2015 +0200
scripts: environment: Return the exit status of the command.
* guix/scripts/environment.scm (guix-environment): Return the exit
status of the command.
---
guix/scripts/environment.scm | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/guix/scripts/environment.scm b/guix/scripts/environment.scm
index c6cac46..ecdbc7a 100644
--- a/guix/scripts/environment.scm
+++ b/guix/scripts/environment.scm
@@ -281,4 +281,4 @@ OUTPUT) tuples, using the build options in OPTS."
(return #t))
(else
(create-environment inputs paths pure?)
- (return (system command)))))))))))
+ (return (exit (status:exit-val (system
command)))))))))))))