debuild has a problem with the debian dir being a link, so mv it instead

pull/1857/head
Isaac Connor 2017-04-27 12:18:27 -04:00
parent 8fad889c82
commit 2344f533ba
1 changed files with 3 additions and 3 deletions

View File

@ -151,12 +151,12 @@ cd "$DIRECTORY.orig";
git submodule init
git submodule update --init --recursive
if [ "$DISTRO" == "trusty" ] || [ "$DISTRO" == "precise" ]; then
ln -sf distros/ubuntu1204 debian
mv distros/ubuntu1204 debian
else
if [ "$DISTRO" == "wheezy" ]; then
ln -sf distros/debian debian
mv distros/debian debian
else
ln -sf distros/ubuntu1604 debian
mv distros/ubuntu1604 debian
fi;
fi;