From 1c556f0eafa8a523a84f9f4e03ffff9d8dfff9f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 26 Aug 2024 11:20:46 +0200 Subject: [PATCH] fix(generate): remove /run tmpfs mount when testing read-write setup This is the typical setup users will have from older time, so test that rather than mixed setup with /run on tmpfs and /tmp not. See https://github.com/WeblateOrg/docker/issues/2579 --- test-generate | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-generate b/test-generate index 24a6ac6..43ed1ba 100755 --- a/test-generate +++ b/test-generate @@ -28,7 +28,7 @@ EOT done fi if [ "$3" = "read-write" ] ; then - sed -i -e '/- \/tmp/D' -e '/read_only: true/D' docker-compose.yml + sed -i -e '/- \/run/D' -e '/- \/tmp/D' -e '/read_only: true/D' docker-compose.yml else # Allow execution in tmp sed -i 's/- \/tmp/- \/tmp:exec/' docker-compose.yml