Skip to content

Commit

Permalink
need backslash on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
KenCorma committed Nov 6, 2024
1 parent 64aeead commit 1acff81
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/actions/build/windows/todesktop/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,16 @@ runs:
shell: cmd
run: |
cd ./assets
mkdir uv && mkdir uv/win && mkdir uv/macos && mkdir uv/linux
curl -s https://github.com/astral-sh/uv/releases/download/0.4.30/uv-x86_64-pc-windows-msvc.zip
curl -s https://github.com/astral-sh/uv/releases/download/0.4.30/uv-aarch64-apple-darwin.tar.gz
curl -s https://github.com/astral-sh/uv/releases/download/0.4.30/uv-x86_64-unknown-linux-gnu.tar.gz
mkdir uv && mkdir uv\\win && mkdir uv\\macos && mkdir uv\\linux
curl https://github.com/astral-sh/uv/releases/download/0.4.30/uv-x86_64-pc-windows-msvc.zip
curl https://github.com/astral-sh/uv/releases/download/0.4.30/uv-aarch64-apple-darwin.tar.gz
curl https://github.com/astral-sh/uv/releases/download/0.4.30/uv-x86_64-unknown-linux-gnu.tar.gz
tar -xzvf uv-x86_64-pc-windows-msvc.zip
tar -xzvf uv-aarch64-apple-darwin.tar.gz
tar -xzvf uv-x86_64-unknown-linux-gnu.tar.gz
cp -r uv-x86_64-pc-windows-msvc/ uv/win
cp -r uv-aarch64-apple-darwin/ uv/macos
cp -r uv-x86_64-unknown-linux-gnu/ uv/linux
cp -r uv-x86_64-pc-windows-msvc/ uv\\win
cp -r uv-aarch64-apple-darwin/ uv\\macos
cp -r uv-x86_64-unknown-linux-gnu/ uv\\linux
- name: Make app
shell: powershell
env:
Expand Down

0 comments on commit 1acff81

Please sign in to comment.