Browse Source

sde-cleanup: changed to use cat <<-EOT instead of echo -e

karasz/new-early
Alejandro Mery 16 years ago
parent
commit
92b919e437
1 changed files with 7 additions and 3 deletions
  1. +7
    -3
      bin/sde-cleanup

+ 7
- 3
bin/sde-cleanup

@ -132,8 +132,12 @@ for x in build/* ; do
fi
fi
done
[ $fullhelp -eq 1 ] &&
echo -e "\nUse '$0 -build' to remove builds and '$0 -cache'
to also flush the cache."
if [ $fullhelp -eq 1 ]; then
cat <<-EOT
Use '$0 -build' to remove builds
and '$0 -cache' to also flush the cache.
EOT
fi
[ "$nocheck" = 1 ] || exec $SDEROOT/bin/sde-cleanup-linger

Loading…
Cancel
Save