summaryrefslogtreecommitdiff
path: root/scripts/zerodisk.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/zerodisk.sh')
-rw-r--r--scripts/zerodisk.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/zerodisk.sh b/scripts/zerodisk.sh
index 35370d6..530ca4d 100644
--- a/scripts/zerodisk.sh
+++ b/scripts/zerodisk.sh
@@ -1,7 +1,7 @@
#!/bin/bash
# Zero out the free space to save space in the final image:
-dd if=/dev/zero of=/EMPTY bs=1M
+dd if=/dev/zero of=/tmp/EMPTY bs=1M
rm -f /EMPTY
# Sync to ensure that the delete completes before this moves on.