Lints the executable scripts

This commit is contained in:
Bruno Tavares
2015-05-20 17:16:16 -03:00
parent 7a85a95a54
commit 25069f4877
13 changed files with 67 additions and 62 deletions

View File

@ -1,8 +1,8 @@
#!/bin/bash
cat <<EVAL
current_dir=`pwd`
cd `kickstart root-dir`/kickstart/
current_dir=$(pwd)
cd $(kickstart root-dir)/kickstart/
source install.sh
cd \$current_dir
cd "\$current_dir"
EVAL