Skip to content

Commit

Permalink
Update action.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Ughuuu committed Feb 7, 2025
1 parent be5cc12 commit 47d5b40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,8 @@ runs:
# Rename it to Blazium
mv ${{ inputs.bin-path }}/editor/$file ${{ inputs.bin-path }}/editor/Blazium
elif [ "$platform" == "windows" ]; then
# Find the .console.exe file within the subdirectory
file=$(find "${{ inputs.bin-path }}/editor" -type f -name '*.console.exe' | head -n 1)
# Find an executable that is NOT a .console.exe
file=$(find "${{ inputs.bin-path }}/editor" -type f -name '*.exe' ! -name '*.console.exe' | head -n 1)
# Rename to Blazium.exe
mv $file ${{ inputs.bin-path }}/editor/Blazium.exe
ls -lah ${{ inputs.bin-path }}/editor
Expand Down

0 comments on commit 47d5b40

Please sign in to comment.