Revision 11419
Added by Aaron Marcuse-Kubitza about 11 years ago
import_all | ||
---|---|---|
18 | 18 |
|
19 | 19 |
# remove any leftover TNRS lockfile. usually, the PID in it would not exist, |
20 | 20 |
# but sometimes it now refers to an active process which blocks tnrs.make. |
21 |
"rm" inputs/.TNRS/tnrs/tnrs.make.lock |
|
21 |
"rm" -f inputs/.TNRS/tnrs/tnrs.make.lock
|
|
22 | 22 |
|
23 | 23 |
make schemas/$version/install |
24 | 24 |
|
Also available in: Unified diff
bugfix: bin/import_all: removing inputs/.TNRS/tnrs/tnrs.make.lock: use `"rm" -f` instead of plain "rm" to avoid having an error exit status, which will abort the script if run with the -e flag (as runscripts are)