diff options
author | Luke Shumaker <lukeshu@parabola.nu> | 2017-05-05 18:41:08 -0400 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2017-07-14 06:57:23 +0200 |
commit | c440e6f1c531688668ae25924f85cc45980f8295 (patch) | |
tree | ccb404a660ae827fdbbd45c00eddc11831e6e216 /archrelease.in | |
parent | 18e2fc20d4eeaa17d4aa1b9b5e323598d68e5227 (diff) | |
download | devtools32-c440e6f1c531688668ae25924f85cc45980f8295.tar.xz |
Quote strings that shellcheck warns about.
These changes are all strictly "slap some double-quotes in there".
Anything more than that is not included in this commit.
Diffstat (limited to 'archrelease.in')
-rw-r--r-- | archrelease.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archrelease.in b/archrelease.in index 3b11652..2ba9d48 100644 --- a/archrelease.in +++ b/archrelease.in @@ -74,7 +74,7 @@ for tag in "$@"; do fi # copy all files at once from trunk to the subdirectory in repos/ - svn copy -q -r HEAD ${known_files[@]/#/$trunk/} "repos/$tag/" + svn copy -q -r HEAD "${known_files[@]/#/$trunk/}" "repos/$tag/" stat_done done |