We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using Powershell's "Compress-Archive", it creates .zip files with forward slashes instead of backslashes. This cannot be extracted by Unix CLI.
Apparently using 7z fixes this issue. Worth exploring.
The text was updated successfully, but these errors were encountered:
@oliverpechey It might be a better idea to use tarballs instead as both Windows and Linux can open these natively without needing external tooling.
If memory serves, replace compress archive with something along the lines of: tar -cvzf .\Release.zip .\dist\Release
tar -cvzf .\Release.zip .\dist\Release
Sorry, something went wrong.
No branches or pull requests
When using Powershell's "Compress-Archive", it creates .zip files with forward slashes instead of backslashes. This cannot be extracted by Unix CLI.
Apparently using 7z fixes this issue. Worth exploring.
The text was updated successfully, but these errors were encountered: