Skip to content

Commit

Permalink
fix: Fix curl arguments for downloading prebuild version
Browse files Browse the repository at this point in the history
  • Loading branch information
meltyshev committed Oct 9, 2024
1 parent 9b556e9 commit 6ffe1d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/installation/manual_installation/debian_ubuntu.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ sudo -i -u planka
**Download the prebuild version of Planka.**
```bash
cd /var/www/planka
curl -fsSL https://github.com/plankanban/planka/releases/latest/download/planka-prebuild.zip -o planka-prebuild.zip
curl -fsSL -O https://github.com/plankanban/planka/releases/latest/download/planka-prebuild.zip
unzip planka-prebuild.zip -d /var/www/
rm planka-prebuild.zip
```
Expand Down
2 changes: 1 addition & 1 deletion docs/installation/manual_installation/windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ mkdir C:\planka
**Download the prebuild version of Planka.**
```powershell
cd C:\planka
curl https://github.com/plankanban/planka/releases/latest/download/planka-prebuild.zip -o planka-prebuild.zip
curl -O https://github.com/plankanban/planka/releases/latest/download/planka-prebuild.zip
Expand-Archive planka-prebuild.zip -DestinationPath C:\
rm planka-prebuild.zip
```
Expand Down

0 comments on commit 6ffe1d1

Please sign in to comment.