diff options
author | Paul Spooren <mail@aparcar.org> | 2020-09-17 18:57:14 -1000 |
---|---|---|
committer | Paul Spooren <mail@aparcar.org> | 2020-09-17 22:19:49 -1000 |
commit | ab30ab04c0b6cb710adbbdd05247aba688d93541 (patch) | |
tree | e08bb5cc27f77066291db40998cc1d77350fca24 | |
parent | bc57c8d0ec50d9fb2c580a7a6a5194de69152570 (diff) |
syncthing: simplify runtime test
Passed argument no longer contains the release.
Signed-off-by: Paul Spooren <mail@aparcar.org>
-rw-r--r-- | utils/syncthing/test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/syncthing/test.sh b/utils/syncthing/test.sh index 5933bca69..f582111ce 100644 --- a/utils/syncthing/test.sh +++ b/utils/syncthing/test.sh @@ -1,3 +1,3 @@ #!/bin/sh -syncthing --version | grep "${2%%-*}" +syncthing --version | grep "$2" |