diff options
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 |