From dc283d8209013c172f4cc18a6fcbb4e1eb39402c Mon Sep 17 00:00:00 2001 From: gangliao Date: Wed, 16 Nov 2016 18:59:10 +0800 Subject: [PATCH] Fix shuf/gshuf choose bug #487 --- demo/quick_start/preprocess.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demo/quick_start/preprocess.sh b/demo/quick_start/preprocess.sh index 58a72147c5e..c9190e2dd2e 100755 --- a/demo/quick_start/preprocess.sh +++ b/demo/quick_start/preprocess.sh @@ -23,7 +23,7 @@ set -e export LC_ALL=C UNAME_STR=`uname` -if [[ ${UNAME_STR} == 'Linux' ]]; then +if [ ${UNAME_STR} == 'Linux' ]; then SHUF_PROG='shuf' else SHUF_PROG='gshuf' -- GitLab