Skip to content

Commit 370d30a

Browse files
authored
fix cat-s3 script (#3170)
1 parent a20ecc9 commit 370d30a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/cat-s3.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ while (( n_failures < 2 )); do
2222
continue
2323
}
2424

25-
if [[ "key" =~ \.gz$ ]]; then
25+
if [[ "$key" =~ \.gz$ ]]; then
2626
local_uncompressed=$(mktemp)
2727
gzip -d -c "$local_copy" > "$local_decompressed"
2828
cat "$local_decompressed" "$local_file_to_concatenate" > "$local_uncompressed"

0 commit comments

Comments
 (0)