From 07f157a05a1a30eecdd279095125edfab191adb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Freitag?= Date: Wed, 31 Jan 2024 16:07:14 +0100 Subject: [PATCH] Do not --force the compress command on deployment to CleverCloud The `--force` flag is only useful when `DEBUG=True`, which should never happen when deploying to CleverCloud. --- clevercloud/python.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clevercloud/python.json b/clevercloud/python.json index 28a8e7dbf..0cc336bf8 100644 --- a/clevercloud/python.json +++ b/clevercloud/python.json @@ -7,7 +7,7 @@ "managetasks": [ "migrate --no-input", "collectstatic --no-input", - "compress --force" + "compress" ] } }