Fix bug in archive:create scripts
That's what I get for not fully testing lmao! But right, paths in shell scripts are relative to the working directory, and if I want to be relative to the script I gotta use dirname!
This commit is contained in:
parent
22784555d9
commit
12b5a56694
2 changed files with 2 additions and 2 deletions
|
@ -1 +1 @@
|
|||
MANIFEST=$(dirname $0)/../manifest-delta.txt ./download-urls.sh
|
||||
MANIFEST=$(dirname $0)/../manifest-delta.txt $(dirname $0)/download-urls.sh
|
|
@ -1 +1 @@
|
|||
MANIFEST=$(dirname $0)/../manifest-full.txt ./download-urls.sh
|
||||
MANIFEST=$(dirname $0)/../manifest-full.txt $(dirname $0)/download-urls.sh
|
Loading…
Reference in a new issue