about summary refs log tree commit diff
diff options
context:
space:
mode:
authorKane York <kanepyork@gmail.com>2020-07-01T20·39-0700
committerKane York <rikingcoding@gmail.com>2020-07-01T20·58+0000
commit66f5e9f6c3a3c6b5dbb931493460289b67885830 (patch)
treed2047f316a8ca9dbceb2798bb468239781479c18
parent48cb38706b4650877c2304d98db2b25a8a202d95 (diff)
chore(bin): fix shellcheck SC2086 r/1155
Change-Id: I441c03e033289da3dcec18daf9a565ec75b7ef75
Reviewed-on: https://cl.tvl.fyi/c/depot/+/835
Reviewed-by: BuildkiteCI
Reviewed-by: tazjin <mail@tazj.in>
Tested-by: BuildkiteCI
-rwxr-xr-xbin/__dispatch.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/__dispatch.sh b/bin/__dispatch.sh
index ce10f13370..e8d54fec39 100755
--- a/bin/__dispatch.sh
+++ b/bin/__dispatch.sh
@@ -6,8 +6,8 @@
 # to the key in nixpkgs which represents the program you want to run.
 set -ueo pipefail
 
-readonly REPO_ROOT=$(dirname $0)/..
-TARGET_TOOL=$(basename $0)
+readonly REPO_ROOT=$(dirname "$0")/..
+TARGET_TOOL=$(basename "$0")
 
 case "${TARGET_TOOL}" in
   terraform)