diff options
author | Maximilian Gerhard <maxbox@directbox.com> | 2012-04-08 18:30:06 +0200 |
---|---|---|
committer | Andreas Loibl <andreas@andreas-loibl.de> | 2012-04-25 10:59:51 +0200 |
commit | 892dd4e15a0618b1d901f9ebc435da2e29f79c34 (patch) | |
tree | 152b516dba408afd75d5b566a1e10dda0d665b9f /auto | |
parent | 586f37afdf754d607dbba717749387f68d4b16d2 (diff) | |
download | kanotix-892dd4e15a0618b1d901f9ebc435da2e29f79c34.zip kanotix-892dd4e15a0618b1d901f9ebc435da2e29f79c34.tar.gz |
avoid copying iso files into ram when using tmpfs
Diffstat (limited to 'auto')
-rwxr-xr-x | auto/build | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -65,7 +65,7 @@ if [ "$LB_KANOTIX_TMPFS" = "true" ]; then # delete everything except cache find . -maxdepth 1 ! -name cache -exec rm -r '{}' \; 2>/dev/null # copy everything to tmpfs - rsync -a .. . --exclude=tmpfs + rsync -a .. . --exclude=tmpfs --exclude '*.iso' # build prebuild time lb build noauto "${@}" 2>&1 | tee binary.log |