diff options
author | stuebinm | 2024-12-02 20:01:13 +0100 |
---|---|---|
committer | stuebinm | 2024-12-02 20:01:13 +0100 |
commit | 1c31d03bf31c489e6826f341c53dfa3a4a76f144 (patch) | |
tree | 9df65db7aba3eed3b8fb1f56ae1210aa2400530a | |
parent | 4da443474e43b7f96a1c0665bf671d3a40acdd9d (diff) |
pkgs/apply-config: reasonable exit values
turns out gauche does not assume 0 if main doesn't return a number
-rwxr-xr-x | pkgs/apply-config/apply-config | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/apply-config/apply-config b/pkgs/apply-config/apply-config index c411ce1..4fea8ca 100755 --- a/pkgs/apply-config/apply-config +++ b/pkgs/apply-config/apply-config @@ -84,7 +84,9 @@ Options: (let ([built-config (build-config)]) (log-verbose (format "built config is ~a" built-config)) (install-in-env built-config) - (switch-to-configuration built-config)))) + (switch-to-configuration built-config)) + + 0)) (define (build-config) |