diff options
author | Arun Isaac | 2022-04-09 21:42:07 +0530 |
---|---|---|
committer | Arun Isaac | 2022-04-09 21:48:37 +0530 |
commit | 6f79b2f9a655e0e746341fd7b5a6b5547e48f9f9 (patch) | |
tree | 8b276685a49ef22ac320d7c2337ad50be4f2974f /scripts | |
parent | 36f80cc1a4db4d7d67e0a1275579ceb9b9821ca2 (diff) | |
download | ccwl-6f79b2f9a655e0e746341fd7b5a6b5547e48f9f9.tar.gz ccwl-6f79b2f9a655e0e746341fd7b5a6b5547e48f9f9.tar.lz ccwl-6f79b2f9a655e0e746341fd7b5a6b5547e48f9f9.zip |
scripts: Do not pass multiple arguments to env.
* scripts/ccwl: Do not pass multiple arguments to env. Pass them
through sh.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/ccwl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/ccwl b/scripts/ccwl index b435f8b..8e9d085 100755 --- a/scripts/ccwl +++ b/scripts/ccwl @@ -1,4 +1,5 @@ -#! /usr/bin/env guile --no-auto-compile +#!/usr/bin/env sh +exec guile --no-auto-compile -s "$0" "$@" !# ;;; ccwl --- Concise Common Workflow Language ;;; Copyright © 2021, 2022 Arun Isaac <arunisaac@systemreboot.net> |