diff options
author | merakor <cem@ckyln.com> | 2021-11-09 09:58:38 +0000 |
---|---|---|
committer | merakor <cem@ckyln.com> | 2021-11-09 09:58:38 +0000 |
commit | 8c9c561e33de1930c2acf11e4dcc60091cfbd257 (patch) | |
tree | 1eb67631b375f0511629831c13d6353d13864ddf | |
parent | 084402a10322ee126a3751a6f9ee3f147c2f708e (diff) | |
download | cpt-8c9c561e33de1930c2acf11e4dcc60091cfbd257.tar.gz |
cpt-download: fix shellcheck error
FossilOrigin-Name: e05141eae479ea2b40e07bcc901d31c90fd12befcbf1a9db6e6042ebb4cb6643
-rwxr-xr-x | src/cpt-download | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpt-download b/src/cpt-download index d2c9aeb..231e4bb 100755 --- a/src/cpt-download +++ b/src/cpt-download @@ -9,7 +9,7 @@ case "$1" in exit 0 ;; --version|-v) version ;; - '') set -- "${PWD##*/}"; export CPT_PATH=${PWD%/*}:$CPT_PATH + '') set -- "${PWD##*/}"; export CPT_PATH="${PWD%/*}:$CPT_PATH" esac create_cache |