diff options
Diffstat (limited to 'source4')
-rwxr-xr-x | source4/scripting/devel/tmpfs.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/scripting/devel/tmpfs.sh b/source4/scripting/devel/tmpfs.sh index 14e9b276c6..44ee04b2ce 100755 --- a/source4/scripting/devel/tmpfs.sh +++ b/source4/scripting/devel/tmpfs.sh @@ -9,8 +9,8 @@ sudo umount bin > /dev/null 2>&1 sudo umount st > /dev/null 2>&1 mkdir -p bin st || exit 1 sudo mount -t tmpfs /dev/null bin || exit 1 -sudo chown $USER bin || exit 1 +sudo chown $USER bin/. || exit 1 echo "tmpfs setup for bin/" sudo mount -t tmpfs /dev/null st || exit 1 -sudo chown $USER st || exit 1 +sudo chown $USER st/. || exit 1 echo "tmpfs setup for st/" |