Skip to content

Commit

Permalink
ci: fix file extension
Browse files Browse the repository at this point in the history
  • Loading branch information
Serein207 committed Oct 18, 2024
1 parent 060b37b commit e3f654d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ jobs:
if [[ $single_file =~ \.pkg\.tar\.zst$ ]]; then
new_file_path="$new_name.pkg.tar.zst"
else
new_file_path="$new_name${single_file##*.}"
new_file_path="$new_name.${single_file##*.}"
fi
mv "$single_file" "$new_file_path"
else
Expand Down

0 comments on commit e3f654d

Please sign in to comment.