From 3bfa19a5099021d0ad08155d97f070d51a982629 Mon Sep 17 00:00:00 2001
From: JocelynDelalande <jocelyn@crapouillou.net>
Date: Fri, 8 Jun 2018 22:37:10 +0000
Subject: [PATCH] Fix doc: rmdir -> rm -rf

rmdir will fail on that non-empty dir
---
 docs/installation/debian.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/installation/debian.rst b/docs/installation/debian.rst
index 2a9f39ea59..b3691ac1eb 100644
--- a/docs/installation/debian.rst
+++ b/docs/installation/debian.rst
@@ -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"
     unzip "api-|version|.zip" -d extracted
     mv extracted/api/* api/
-    rmdir extracted
+    rm -rf extracted
 
 
 Then we'll download the frontend files:
-- 
GitLab