summaryrefslogtreecommitdiff
path: root/pkg
diff options
context:
space:
mode:
authorKali Kaneko <kali@leap.se>2016-04-04 21:55:06 -0400
committerKali Kaneko <kali@leap.se>2016-04-04 21:55:06 -0400
commit0ce1c02dd59df3e4f23ba0b90e67644258412533 (patch)
treecd7ac64b812d3009c8ca20db97a4e4dca6394431 /pkg
parentfe96e2eef29a538b856f0d8b4bbf3940e42364c1 (diff)
[bug] fail gracefully if no pixelated modules present
currently, we're distributing the wheels for the pixelated modules under downloads.leap.se. bootstrap script tried to download the pixelated modules, but it fails on python versions < 2.7.9, apparently. as a workaround, I make the import of the pixelated modules a non-fatal error by setting a flag, and doing the launching of the pix UA conditional on a successful import. - Related: #8009
Diffstat (limited to 'pkg')
-rwxr-xr-xpkg/scripts/bootstrap_develop.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkg/scripts/bootstrap_develop.sh b/pkg/scripts/bootstrap_develop.sh
index 3695fabc..af3dce20 100755
--- a/pkg/scripts/bootstrap_develop.sh
+++ b/pkg/scripts/bootstrap_develop.sh
@@ -118,7 +118,8 @@ setup_develop() {
# hack to solve gnupg version problem
pip uninstall -y gnupg && pip install gnupg
- pip install -r pkg/requirements-pixelated.pip
+ # XXX this fails in trusty; see #8009
+ # pip install -r pkg/requirements-pixelated.pip
set +x
echo "${cc_green}Status: $status done.${cc_normal}"
}