1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-06-25 05:38:33 +00:00

Quote variables in build

This commit is contained in:
sin 2014-02-20 16:23:53 +00:00
parent 86a95aab0d
commit 50fb964503

10
build

@ -27,23 +27,23 @@ install() {
. $1
(
if ! fetch; then
echo "Failed to fetch $1" >> $top/morpheus.log
echo "Failed to fetch $1" >> "$top/morpheus.log"
exit 1
fi
if ! unpack; then
echo "Failed to unpack $1" >> $top/morpheus.log
echo "Failed to unpack $1" >> "$top/morpheus.log"
exit 1
fi
if ! patch; then
echo "Failed to patch $1" >> $top/morpheus.log
echo "Failed to patch $1" >> "$top/morpheus.log"
exit 1
fi
if ! build; then
echo "Failed to build $1" >> $top/morpheus.log
echo "Failed to build $1" >> "$top/morpheus.log"
exit 1
fi
if ! install; then
echo "Failed to install $1" >> $top/morpheus.log
echo "Failed to install $1" >> "$top/morpheus.log"
exit 1
fi
)