commit 08836dd5cb337568080d4c918da92915679d2504
parent 969d0cf3a1bc82d95e878973bd091ef00cbd60af
Author: sin <sin@2f30.org>
Date:   Thu, 22 May 2014 16:58:54 +0100
Update morpheus installation script to work with the latest
pkgtools.
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/install-morpheus b/install-morpheus
@@ -3,7 +3,7 @@
 # Bear in mind that some packages might be conflicting with each
 # other.  This is more of a hack to be honest.
 
-set -x -e
+set -x
 
 installdir="/tmp/morpheus"
 
@@ -13,5 +13,5 @@ cd "$installdir"
 git clone git://git.2f30.org/pkgtools
 mkdir -p "$installdir/root"
 for i in $(find "morpheus.2f30.org" -type f -name "*.tar.gz"); do
-	./pkgtools/installpkg -p "$installdir/root" "$i"
+	./pkgtools/installpkg -r "$installdir/root" "$i"
 done