Skip to content

Commit

Permalink
don't throw error if directory already exists
Browse files Browse the repository at this point in the history
  • Loading branch information
MinmoTech committed Jun 11, 2023
1 parent 6f1cd21 commit c97644f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ jobs:
poetry install
poetry run pyinstaller --onefile --clean --windowed --add-binary 'binaries/mac:.' migaku-player-converter.py
- name: Create release dir
run: mkdir "$GITHUB_WORKSPACE/release"
run: mkdir -p "$GITHUB_WORKSPACE/release"
- name: Create dist dir
run: mkdir "$GITHUB_WORKSPACE/dist"
run: mkdir -p "$GITHUB_WORKSPACE/dist"
- name: rename binary
run: mv dist/migaku-player-converter "$GITHUB_WORKSPACE/release/migaku-player-converter-mac"
- name: rename binary
Expand Down

0 comments on commit c97644f

Please sign in to comment.