-
Notifications
You must be signed in to change notification settings - Fork 1
Closed
Labels
maintenanceC'est la vie.C'est la vie.
Description
Context
In PR #395, a documentation update was made to convert installation guides to MyST format. During review, it was identified that the Windows installation guide uses the unzip command, which is not available on stock Windows installations.
Proposed Fix
The suggestion is to replace unzip -o crate-*.zip with PowerShell-native commands:
- Primary:
Expand-Archive -Path .\crate-*.zip -DestinationPath . - Alternative:
tar -xf crate-*.zip(available since Windows 10 1803)
The fix has been addressed in commit d7ed7f3.
Action Required
@michaelkremmel - Could you please verify that the updated Windows extraction procedure works correctly on a Windows system? Specifically:
- Test the
Expand-Archivecommand with the CrateDB release archive - Optionally test the
tar -xfalternative - Confirm the instructions are clear and accurate
References
- PR: Chore: Convert
install/**into MyST format #395 - Comment: Chore: Convert
install/**into MyST format #395 (comment) - File: docs/install/windows.md
- Requested by: @amotl
Metadata
Metadata
Assignees
Labels
maintenanceC'est la vie.C'est la vie.