Skip to content
Snippets Groups Projects
Commit 0ef3f9c2 authored by Andreas Kusalananda Kähäri's avatar Andreas Kusalananda Kähäri
Browse files

Sending SIGINT (<ctrl>-C) will now make the script exit gracefully,

after cleaning up whatever it was doing at the time.  This means
restarting the process later is easier and safer.
parent c0fed0e1
No related branches found
No related tags found
No related merge requests found
......@@ -23,8 +23,10 @@ function getdb
mkdir databases
fi
if [[ ! -d databases/${db}_${ver} ]]; then
trap "rm -rf databases/${db}_${ver}; exit 1" INT
lynx -source $url | (cd databases; pax -r -v \
-s "/.*${dbver}\//${dbver}\//")
trap - INT
fi
}
......@@ -46,17 +48,21 @@ function do_delta
typeset apply_out=deltas/${db}_${v1}_delta_${v2}_apply.out
if [[ ! -f $build_out ]]; then
trap "rm $build_out; exit 1" INT
getdb $path1 $db $v1
getdb $path2 $db $v2
/usr/bin/time perl -w ./build.pl -c ./xdelta.osf \
-s databases -d deltas \
$db $v1 $v2 2>&1 | tee $build_out
trap - INT
fi
if [[ ! -f $apply_out ]]; then
trap "rm $apply_out; exit 1" INT
/usr/bin/time perl -w ./apply.pl -c ./xdelta.osf \
-d databases -s deltas \
$db $v1 $v2 2>&1 | tee $apply_out
trap - INT
fi
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment