1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00
samba-mirror/source3/script/installdirs.sh
2007-10-10 11:10:20 -05:00

19 lines
333 B
Bash
Executable File

#!/bin/sh
INSTALLPERMS=$1
DESTDIR=`echo $2 | sed 's/\/\//\//g'`
shift
shift
for dir in $@; do
DIRNAME=`echo $dir | sed 's/\/\//\//g'`
if [ ! -d $DESTDIR/$DIRNAME ]; then
mkdir -m $INSTALLPERMS -p $DESTDIR/$DIRNAME
fi
if [ ! -d $DESTDIR/$DIRNAME ]; then
echo "Failed to make directory $DESTDIR/$DIRNAME "
exit 1
fi
done