Skip to content

Commit 2698e9c

Browse files
committed
Fix searh of .ogg files
1 parent 4523cdd commit 2698e9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.scripts/handle_sounds.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ echo -e "\tpath = \"__"$mod_name"__/"$folder_path"/\", -- path to this folder" >
6060
echo -e "\tsounds = {" >> $SOUNDS_LIST_PATH
6161

6262
format=*.ogg
63-
files=($(find . -name "$format" -type f))
63+
files=($(find $folder_path/ -name "$format" -type f))
6464
for path in "${files[@]}"; do
6565
name="$(basename -- $path)"
6666
name=${name%.*}

0 commit comments

Comments
 (0)