Skip to content

Commit ed26c56

Browse files
committed
Fix typo in recursive find
1 parent e883850 commit ed26c56

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

create_monero_torrent.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ for tuple in "$HASHES_URL:hashes.txt" "$BF_KEY_URL:binaryfate.asc"; do
4343
# recursively find a file https://stackoverflow.com/a/656744
4444
src_file=$(find "$CDN_URL" -type f -name "$url" -print -quit)
4545
if [ "$src_file" ]; then
46-
cp "$src_file" "$OUTPUT_DIR/$filaname"
46+
cp "$src_file" "$OUTPUT_DIR/$filename"
4747
else
4848
echo "$file not found in $CDN_URL"
4949
exit 1

0 commit comments

Comments
 (0)