fix(Bash/DB-Exporter): typo (#4376)

This commit is contained in:
Francesco Borzì 2021-02-05 13:17:15 +01:00 committed by GitHub
parent 9f47c83c11
commit 3671da68ff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19,7 +19,7 @@ command -v mysqlimport >/dev/null 2>&1 || { WIN_BIN=1; }
command -v mysqldump >/dev/null 2>&1 || { WIN_BIN=1; }
WIN_BIN=1
if [[ $(uname -s) == "Linux") ]] || [[ $(uname -s) == "Darwin" ]]; then
if [[ $(uname -s) == "Linux" ]] || [[ $(uname -s) == "Darwin" ]]; then
WIN_BIN=0
else
WIN_BIN=1