Skip to content

Commit

Permalink
Remove robocopy
Browse files Browse the repository at this point in the history
  • Loading branch information
problematicconsumer committed Dec 29, 2023
1 parent 8084430 commit 3b473ee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/package_windows.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ Get-ChildItem -Recurse -File -Path "dist" -Filter "*windows-setup.exe" | Copy-It
Compress-Archive -Force -Path "dist\tmp\hiddify-next-setup.exe",".github\help\mac-windows\*.url" -DestinationPath "out\hiddify-windows-x64-setup.zip"

# windows portable
robocopy "build\windows\x64\runner\Release" "dist\tmp\hiddify-next\" /e
robocopy ".github\help\mac-windows" "dist\tmp\hiddify-next" "*.url"
Compress-Archive -Force -Path "dist\tmp\hiddify-next" -DestinationPath "out\hiddify-windows-x64-portable.zip"
xcopy "build\windows\x64\runner\Release" "dist\tmp\hiddify-next" /E/H/C/I/Y
xcopy ".github\help\mac-windows\*.url" "dist\tmp\hiddify-next" /E/H/C/I/Y
Compress-Archive -Force -Path "dist\tmp\hiddify-next" -DestinationPath "out\hiddify-windows-x64-portable.zip" -ErrorAction SilentlyContinue

0 comments on commit 3b473ee

Please sign in to comment.