# HG changeset patch # User Tom Gottfried # Date 1446638876 -3600 # Node ID 62f0b084fe1f6788e25606553c2afe25ab013c9f # Parent c7bf0b459074ff03390487229d003c81b34b9812 wget produces spammy output when used in docker build. diff -r c7bf0b459074 -r 62f0b084fe1f install-dependencies.sh --- a/install-dependencies.sh Tue Nov 03 14:44:01 2015 +0100 +++ b/install-dependencies.sh Wed Nov 04 13:07:56 2015 +0100 @@ -4,38 +4,38 @@ SCRIPT_DIR=`dirname $0` cd $SCRIPT_DIR -wget https://cdn.sencha.com/ext/gpl/ext-4.2.1-gpl.zip +curl -O https://cdn.sencha.com/ext/gpl/ext-4.2.1-gpl.zip unzip ext-4.2.1-gpl.zip ln -s ext-4.2.1.883 extjs mkdir -p resources/lib/ext cd resources/lib -wget https://github.com/eligrey/FileSaver.js/archive/master.zip \ - -O FileSaver-js.zip +curl https://github.com/eligrey/FileSaver.js/archive/master.zip \ + -o FileSaver-js.zip unzip FileSaver-js.zip ln -s FileSaver.js-master FileSaver -wget https://github.com/eligrey/Blob.js/archive/master.zip \ - -O Blob-js.zip +curl https://github.com/eligrey/Blob.js/archive/master.zip \ + -o Blob-js.zip unzip Blob-js.zip ln -s Blob.js-master Blob -wget https://github.com/openlayers/openlayers/archive/release-2.13.1.zip \ - -O OpenLayers-2-13-1.zip +curl https://github.com/openlayers/openlayers/archive/release-2.13.1.zip \ + -o OpenLayers-2-13-1.zip unzip OpenLayers-2-13-1.zip ln -s openlayers-release-2.13.1/build OpenLayers cd OpenLayers python build.py cd ../ext -wget https://github.com/elmasse/Ext.i18n.Bundle/archive/v0.3.3.zip \ - -O Ext-i18n-Bundle-v0-3-3.zip +curl https://github.com/elmasse/Ext.i18n.Bundle/archive/v0.3.3.zip \ + -o Ext-i18n-Bundle-v0-3-3.zip unzip Ext-i18n-Bundle-v0-3-3.zip ln -s Ext.i18n.Bundle-0.3.3/i18n i18n -wget https://github.com/ivan-novakov/extjs-upload-widget/archive/1.1.1.zip \ - -O Ext-ux-Upload-1-1-1.zip +curl https://github.com/ivan-novakov/extjs-upload-widget/archive/1.1.1.zip \ + -o Ext-ux-Upload-1-1-1.zip unzip Ext-ux-Upload-1-1-1.zip ln -s extjs-upload-widget-1.1.1/lib/upload upload