Skip to content
Snippets Groups Projects
Verified Commit 2cfe4fa3 authored by Eliot Berriot's avatar Eliot Berriot
Browse files

Fixed wrong mv command in debian guide

parent 3af33273
No related branches found
No related tags found
No related merge requests found
...@@ -89,7 +89,7 @@ First, we'll download the latest api release. ...@@ -89,7 +89,7 @@ First, we'll download the latest api release.
curl -L -o "api-|version|.zip" "https://code.eliotberriot.com/funkwhale/funkwhale/-/jobs/artifacts/|version|/download?job=build_api" curl -L -o "api-|version|.zip" "https://code.eliotberriot.com/funkwhale/funkwhale/-/jobs/artifacts/|version|/download?job=build_api"
unzip "api-|version|.zip" -d extracted unzip "api-|version|.zip" -d extracted
mv extracted/api api mv extracted/api/* api/
rmdir extracted rmdir extracted
...@@ -100,7 +100,7 @@ Then we'll download the frontend files: ...@@ -100,7 +100,7 @@ Then we'll download the frontend files:
curl -L -o "front-|version|.zip" "https://code.eliotberriot.com/funkwhale/funkwhale/-/jobs/artifacts/|version|/download?job=build_front" curl -L -o "front-|version|.zip" "https://code.eliotberriot.com/funkwhale/funkwhale/-/jobs/artifacts/|version|/download?job=build_front"
unzip "front-|version|.zip" -d extracted unzip "front-|version|.zip" -d extracted
mv extracted/front . mv extracted/front .
rmdir extracted rm -rf extracted
You can leave the ZIP archives in the directory, this will help you know You can leave the ZIP archives in the directory, this will help you know
which version you've installed next time you want to upgrade your installation. which version you've installed next time you want to upgrade your installation.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment