Merge branch 'master' into types_explorer

This commit is contained in:
Nico Schottelius 2011-02-23 09:24:25 +01:00
commit 53b51b0ead
2 changed files with 7 additions and 9 deletions

View file

@ -33,11 +33,11 @@ fi
case "$type" in
directory)
echo mkdir \"$path\"
echo mkdir \"$destination\"
;;
file)
echo touch \"$path\"
echo touch \"$destination\"
;;
*)
@ -48,5 +48,5 @@ esac
if [ -f mode ]; then
mode="$(cat mode)"
echo chmod \"$mode\" \"$path\"
echo chmod \"$mode\" \"$destination\"
fi