Fix doc: rmdir -> rm -rf
rmdir will fail on that non-empty dir
This commit is contained in:
parent
06a78336a4
commit
3bfa19a509
|
@ -90,7 +90,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
|
rm -rf extracted
|
||||||
|
|
||||||
|
|
||||||
Then we'll download the frontend files:
|
Then we'll download the frontend files:
|
||||||
|
|
Loading…
Reference in New Issue