diff options
author | Andrew Tridgell <tridge@samba.org> | 1996-08-16 13:09:59 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1996-08-16 13:09:59 +0000 |
commit | f84199aad60c10a24f66a1270a6f7157600d0fca (patch) | |
tree | 5e14f8d335b6419cb207d1c0f556ae0797062037 /source/script | |
parent | be2b67940302b2e63890cb865fe3948c2206ea91 (diff) | |
download | samba-f84199aad60c10a24f66a1270a6f7157600d0fca.tar.gz |
fixed installscripts.sh so it no longer creates ] and [ directories
every time its run!
Diffstat (limited to 'source/script')
-rwxr-xr-x | source/script/installscripts.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/script/installscripts.sh b/source/script/installscripts.sh index ab9035ff812..1a230c8cfa2 100755 --- a/source/script/installscripts.sh +++ b/source/script/installscripts.sh @@ -10,7 +10,7 @@ shift echo Installing scripts in $BINDIR -for d in [ $BINDIR ]; do +for d in $BINDIR; do if [ ! -d $d ]; then mkdir $d if [ ! -d $d ]; then |