We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5e0c9d commit 36bd51fCopy full SHA for 36bd51f
bin/process_all.sh
@@ -71,9 +71,9 @@ mkdir -p "${basepath}/users"
71
72
############################################################################
73
# Run Lichen
74
- ./tokenize_all.py "$tmp_location" || exit 1
75
- ./hash_all.py "$tmp_location" || exit 1
76
- ./compare_hashes.out "$tmp_location" || exit 1
+ ./tokenize_all.py "$tmp_location" || { rm -rf $tmp_location; exit 1; }
+ ./hash_all.py "$tmp_location" || { rm -rf $tmp_location; exit 1; }
+ ./compare_hashes.out "$tmp_location" || { rm -rf $tmp_location; exit 1; }
77
78
79
# Zip the results back up and send them back to the course's lichen directory
0 commit comments