diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2021-07-01 13:33:59 +0200 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2021-07-01 13:33:59 +0200 |
commit | 413305ecdc00c95d58dda6dec19597194cad3e05 (patch) | |
tree | ca5f63e11872e3630cf63072b7acb43167e7149d /skate/testdata/fetch.sh | |
parent | 3c9df2ab9dfbbfcf35e5b7e9415a1123df641bf3 (diff) | |
download | refcat-413305ecdc00c95d58dda6dec19597194cad3e05.tar.gz refcat-413305ecdc00c95d58dda6dec19597194cad3e05.zip |
tweak fetch.sh
Diffstat (limited to 'skate/testdata/fetch.sh')
-rwxr-xr-x | skate/testdata/fetch.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/skate/testdata/fetch.sh b/skate/testdata/fetch.sh index 9254cdc..f91484d 100755 --- a/skate/testdata/fetch.sh +++ b/skate/testdata/fetch.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# Fetches release entity mentioned in verify.csv and cache them locally. +# Fetch release entity mentioned in verify.csv and cache them locally. set -e -u set -o pipefail @@ -20,7 +20,7 @@ done mkdir -p "$RELEASE_DIR" for ident in $(awk -F, '{print $1"\n"$2}' "$CSV"); do - dst="release/$ident" + dst="$RELEASE_DIR/$ident" if [ -f "$dst" ]; then echo >&2 "[cached] $dst" continue |