We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8745286 commit dfc0748Copy full SHA for dfc0748
tools/build_lxc.sh
@@ -1,5 +1,9 @@
1
#!/usr/bin/env bash
2
3
+# Debug stuff
4
+set -o errexit
5
+set -o xtrace
6
+
7
# Sanity check
8
if [ "$EUID" -ne "0" ]; then
9
echo "This script must be run with root privileges."
@@ -126,7 +130,7 @@ fi
126
130
# Make sure that base requirements are installed
127
131
chroot $CACHEDIR apt-get update
128
132
chroot $CACHEDIR apt-get install -y --download-only `cat files/apts/* | grep NOPRIME | cut -d\# -f1`
129
-chroot $CACHEDIR apt-get install -y --force-yes `cat files/apts/* | grep -v NOPRIME | cut -d\# -f1`
133
+chroot $CACHEDIR apt-get install -y --force-yes `cat files/apts/* | grep -v NOPRIME | cut -d\# -f1` || true
134
chroot $CACHEDIR pip install `cat files/pips/*`
135
136
# Clean out code repos if directed to do so
0 commit comments