Skip to content

Commit

Permalink
Fix move path
Browse files Browse the repository at this point in the history
  • Loading branch information
SupSuper committed Sep 1, 2023
1 parent 94fd954 commit 55777b1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,10 @@ jobs:
- name: Copy data to bin
shell: powershell
run: |
Move-Item -Force -Path "translations\openxcom\common\*" -Destination "bin\common"
Move-Item -Force -Path "translations\openxcom\standard\*" -Destination "bin\standard"
Move-Item -Force -Path "patch\xcom1\*" -Destination "bin\standard\xcom1"
Move-Item -Force -Path "patch\xcom2\*" -Destination "bin\standard\xcom2"
Move-Item -Force -ErrorAction SilentlyContinue -Path "translations\openxcom\common\*" -Destination "bin\common"
Move-Item -Force -ErrorAction SilentlyContinue -Path "translations\openxcom\standard\*" -Destination "bin\standard"
Move-Item -Force -ErrorAction SilentlyContinue -Path "patch\xcom1\*" -Destination "bin\standard\xcom1"
Move-Item -Force -ErrorAction SilentlyContinue -Path "patch\xcom2\*" -Destination "bin\standard\xcom2"
- name: Get SHA hashes
uses: nrwl/nx-set-shas@v3
Expand Down

0 comments on commit 55777b1

Please sign in to comment.