diff options
author | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2011-09-30 02:32:05 -0400 |
---|---|---|
committer | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2011-09-30 02:32:05 -0400 |
commit | c99f38245b61fea8943744808ae8a78149f2ef30 (patch) | |
tree | 875f8adc738fd95cbb2dcdc8c0e85ffe5cdf567b | |
parent | 8af657998a44395fdaae065c84ed3dd351f61259 (diff) | |
download | kvm-manager-c99f38245b61fea8943744808ae8a78149f2ef30.tar.gz kvm-manager-c99f38245b61fea8943744808ae8a78149f2ef30.tar.bz2 |
fix error output for di-maker
-rwxr-xr-x | di-maker | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -16,10 +16,6 @@ set -e output="$1" -# remaining arguments should be files to re-pack into the initrd -shift - - SUITE=${SUITE:-stable} ARCH=${ARCH:-amd64} DISTRO=${DISTRO:-debian} @@ -29,6 +25,9 @@ if [ -z "$output" ] ; then exit 1 fi +# remaining arguments should be files to re-pack into the initrd +shift + WORKDIR=$(mktemp -d) cleanup() { |