diff options
author | Carl <c_sorensen@byu.edu> | 2012-03-23 20:16:43 -0600 |
---|---|---|
committer | Carl <c_sorensen@byu.edu> | 2012-03-26 22:21:10 -0600 |
commit | 8cd5d25aa619cffefed067147b3062051f1b7b08 (patch) | |
tree | 79a0732ba3283d5c10e0d3e3a7ce696b33caf86e /stepmake/bin/stepmakeise.sh | |
parent | 6cad9bc0092669eb0e8c0f580253fab4982f66f4 (diff) |
Change all occurences of "echo -n" to "printf" for portability
Diffstat (limited to 'stepmake/bin/stepmakeise.sh')
-rwxr-xr-x | stepmake/bin/stepmakeise.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/stepmake/bin/stepmakeise.sh b/stepmake/bin/stepmakeise.sh index 4119be3df5..e2ae7cfe8b 100755 --- a/stepmake/bin/stepmakeise.sh +++ b/stepmake/bin/stepmakeise.sh @@ -34,7 +34,7 @@ if [ -r stepmake ]; then exit 1 fi echo "Stepmake found" - echo -n "Checking version..." + printf "Checking version..." VERSION=$MAJOR_VERSION.$MINOR_VERSION.$PATCH_LEVEL # urg version=$VERSION @@ -49,7 +49,7 @@ fi if [ true ]; then # urg - echo -n "Checking latest..." + printf "Checking latest..." if [ ! -r $reldir ]; then echo "$name: huh 2?" exit 1 @@ -64,7 +64,7 @@ if [ true ]; then echo "relax, StepMake is up to date" exit 0 fi - echo -n "Updating StepMake..." + printf "Updating StepMake..." (set +x; rm -rf stepmake; tar xzf $reldir/stepmake-$LATEST.tar.gz; mv stepmake-$LATEST stepmake) echo "ok" fi @@ -84,7 +84,7 @@ for i in $files; do fi done -echo -n "Stepmakeising..." +printf "Stepmakeising..." for i in $files; do cp -prv stepmake/$i . done |