final copy needs to be done as root to deal wit vbox mount defaults

git-svn-id: svn://localhost/ardour2/branches/3.0@9184 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis
2011-03-21 22:17:11 +00:00
parent 4d4e231f03
commit 78814265e3
2 changed files with 2 additions and 4 deletions

View File

@@ -7,8 +7,6 @@ if [ x$BASE = "x" ] ; then
fi
if mount | grep --silent vmshare ; then
:
else
sudo mount -t vboxsf vmshare $HOME/vmshare
fi
@@ -20,6 +18,6 @@ cd tools/linux_packaging || exit 1
./build --public --nostrip || exit 1
file=`ls -t *.bz2 | head -1`
echo "Copying $file to shared folder ..."
cp $file $HOME/vmshare || exit 1
sudo cp $file $HOME/vmshare || exit 1
exit 0