summaryrefslogtreecommitdiffstats
path: root/easy_e17.sh
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2011-09-06 08:17:02 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2011-09-06 08:17:02 +0200
commitdfce96009f553e9f1bb8f9601407e0479b849785 (patch)
tree74f78ea6641f74413194f3ba8a1edd374479e34c /easy_e17.sh
parent4af839a34533a1570c5f07188e20cf7c0be3154f (diff)
downloadbin-dfce96009f553e9f1bb8f9601407e0479b849785.zip
bin-dfce96009f553e9f1bb8f9601407e0479b849785.tar.gz
easy_e17.sh: fix make_only value check
Diffstat (limited to 'easy_e17.sh')
-rwxr-xr-xeasy_e17.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/easy_e17.sh b/easy_e17.sh
index 3a34a82..1d2559b 100755
--- a/easy_e17.sh
+++ b/easy_e17.sh
@@ -798,7 +798,7 @@ function git_fetch ()
set_title "Updating sources in '$src_path' ..."
echo "- updating sources in '$src_path' ..."
cd $src_path
- if [ make_only == 0 ]; then
+ if [ $make_only == 0 ]; then
echo "- checkout modified files"
git status -s | grep -e '^ M' | cut -d " " -f 3 | xargs git checkout 2>/dev/null
fi