Revision 10849
Added by Aaron Marcuse-Kubitza over 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" 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: `rm inputs/.TNRS/tnrs/tnrs.make.lock`: need to use `"rm"` instead of `rm` so that we don't use any rm alias the user might have in their shell (import_all is run in the calling shell so that the jobs are owned by the calling shell)