Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
genscale-admin committed Feb 26, 2016
1 parent 020f599 commit 67060b6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/simple_test.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

# One can define SILENT_MODE=true to enable progrss monitor while loading data
# One can define SILENT_MODE=true to enable progress monitor while loading data
# from EBI.

################################################################################
Expand All @@ -13,7 +13,7 @@ WGET_PATH=`which wget`
echo ">>> Retrieving data sample: ${DATA_SAMPLE}"
if [ ! -z "$WGET_PATH" ] ; then
echo " using '$WGET_PATH'..."
if [ $SILENT_MODE="true" ] ; then
if [ $SILENT_MODE=="true" ] ; then
wget --quiet ${DATA_SAMPLE}
else
wget ${DATA_SAMPLE}
Expand All @@ -22,7 +22,7 @@ else
CURL_PATH=`which curl`
if [ ! -z "$CURL_PATH" ] ; then
echo " using '$CURL_PATH'..."
if [ $SILENT_MODE="true" ] ; then
if [ $SILENT_MODE=="true" ] ; then
curl --silent -O ${DATA_SAMPLE}
else
curl -O ${DATA_SAMPLE}
Expand Down

0 comments on commit 67060b6

Please sign in to comment.