diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2018-12-06 14:53:43 +1300 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2018-12-06 14:53:43 +1300 |
commit | 51fe73814a5aa27cbeac1df6f5a7f0db493d0e88 (patch) | |
tree | f2a6911fcd6f3d82497feded13b9c1226493642a /watch-git-tags.sh | |
parent | Correct/adjust default behaviour with no args (diff) | |
download | watch-vcs-tags-51fe73814a5aa27cbeac1df6f5a7f0db493d0e88.tar.gz watch-vcs-tags-51fe73814a5aa27cbeac1df6f5a7f0db493d0e88.zip |
Remove unneeded semicolon
Diffstat (limited to 'watch-git-tags.sh')
-rw-r--r-- | watch-git-tags.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/watch-git-tags.sh b/watch-git-tags.sh index ba63f1c..7dabb71 100644 --- a/watch-git-tags.sh +++ b/watch-git-tags.sh @@ -29,7 +29,7 @@ if [ "$#" -eq 0 ] ; then fi # Iterate through each repo in a subshell in parallel -for repo ; do ( +for repo do ( # Make a temporary directory with a hash in its name for uniqueness name=$(printf '%s' "$repo" | sed 's:/:_:g') |