mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-02-16 14:34:42 +00:00
Fix shellcheck error in bin/setup
Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
parent
64d6073aa1
commit
cbce0caa84
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,7 @@
|
|||
|
||||
set -e
|
||||
|
||||
version_lt() { test "$(printf '%s\n' "$@" | { [ "$(uname)" = "Linux" ] && sort -V || sort -t. -k 1,1n -k 2,2n -k 3,3n -k 4,4n; } | tail -n 1)" != "$1"; }
|
||||
version_lt() { test "$(printf '%s\n' "$@" | { [ "$(uname)" = "Linux" ] && (sort -V || sort -t. -k 1,1n -k 2,2n -k 3,3n -k 4,4n;) } | tail -n 1)" != "$1"; }
|
||||
|
||||
# run command at repo root
|
||||
CURRENT_PATH=$PWD
|
||||
|
|
Loading…
Reference in a new issue