aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArun Isaac2022-04-09 21:42:07 +0530
committerArun Isaac2022-04-09 21:48:37 +0530
commit6f79b2f9a655e0e746341fd7b5a6b5547e48f9f9 (patch)
tree8b276685a49ef22ac320d7c2337ad50be4f2974f
parent36f80cc1a4db4d7d67e0a1275579ceb9b9821ca2 (diff)
downloadccwl-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.
-rwxr-xr-xscripts/ccwl3
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>