chore(sh): remove more unnecessary 'echo' from all scripts (fix #466)

This commit is contained in:
Marcin Woźniak
2022-08-14 01:12:15 +02:00
committed by AJ ONeal
parent 24f66d7549
commit 4c539f3bd2
17 changed files with 17 additions and 17 deletions

View File

@@ -34,7 +34,7 @@ function __init_gitdeploy() {
# gitdeploy v0.7.1 (be68fec) 2020-10-20T22:27:47Z)
# This trims it down to just the version number:
# 0.7.1
echo "$(gitdeploy --version 2> /dev/null | head -n 1 | cut -d' ' -f2 | sed 's:^v::')"
gitdeploy --version 2> /dev/null | head -n 1 | cut -d' ' -f2 | sed 's:^v::'
}
}