diff options
| author | Arun Isaac | 2025-12-02 01:23:37 +0000 |
|---|---|---|
| committer | Arun Isaac | 2025-12-02 01:23:37 +0000 |
| commit | c937863fd417aa786d4faad9af6f5af466ee397d (patch) | |
| tree | 9f2e0e49c2432c53d00d96cfbf04781b1929238c | |
| parent | 8eb8fde7cf6da312074f6704b111ea8e4a9df3b7 (diff) | |
| download | ccwl-c937863fd417aa786d4faad9af6f5af466ee397d.tar.gz ccwl-c937863fd417aa786d4faad9af6f5af466ee397d.tar.lz ccwl-c937863fd417aa786d4faad9af6f5af466ee397d.zip | |
scripts: Do not wrap simple condition in condition.
| -rwxr-xr-x | scripts/ccwl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/ccwl b/scripts/ccwl index c77968a..29c64bf 100755 --- a/scripts/ccwl +++ b/scripts/ccwl @@ -94,8 +94,8 @@ exec guile --no-auto-compile -e main -s "$0" "$@" (workflow? result)) result (raise-exception - (condition (formatted-message "Last expression in file ~a returns none of workflow, command or js-expression" - source))))) + (formatted-message "Last expression in file ~a returns none of workflow, command or js-expression" + source)))) port)) (define (main args) |
