From d5a8bd02edd61c98d37d4caaea3d5eaa6d501861 Mon Sep 17 00:00:00 2001 From: Eggmanplant <126160675+Eggmanplant@users.noreply.github.com> Date: Thu, 2 May 2024 20:12:46 +0200 Subject: [PATCH] Fix errors when running the flatpak No more errors! --- flatpak/run.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/flatpak/run.sh b/flatpak/run.sh index 1bb60b00..cb6c08c1 100644 --- a/flatpak/run.sh +++ b/flatpak/run.sh @@ -1,5 +1,9 @@ #!/bin/sh -mkdir game +if [ ! -d ./game ]; then + mkdir game +fi cd game -cp /app/share/forever/help.txt .. +if [ ! -f ../help.txt ]; then + cp /app/share/forever/help.txt .. +fi s1fs2a