···1#!/bin/sh
23-if [ $# -eq 0 ]; then
4-5- # The extra slash at the end of the URL is necessary to stop wget
6- # from recursing over the whole server! (No, it's not a bug.)
7- $(nix-build ../../../../.. -A autonix.manifest) \
8- http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/ \
9- -A '*.tar.xz'
10-11-else
1213- $(nix-build ../../../.. -A autonix.manifest) -A '*.tar.xz' "$@"
14-15-fi
00
···1#!/bin/sh
23+set -x
0000000045+# The extra slash at the end of the URL is necessary to stop wget
6+# from recursing over the whole server! (No, it's not a bug.)
7+$(nix-build ../../../../.. --no-out-link -A autonix.manifest) \
8+ http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/ \
9+ -A '*.tar.xz'