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:
Emi Matchu 2022-10-24 16:56:06 -07:00
parent 22784555d9
commit 12b5a56694
2 changed files with 2 additions and 2 deletions

View file

@ -1 +1 @@
MANIFEST=$(dirname $0)/../manifest-delta.txt ./download-urls.sh
MANIFEST=$(dirname $0)/../manifest-delta.txt $(dirname $0)/download-urls.sh

View file

@ -1 +1 @@
MANIFEST=$(dirname $0)/../manifest-full.txt ./download-urls.sh
MANIFEST=$(dirname $0)/../manifest-full.txt $(dirname $0)/download-urls.sh