Skip to content
This repository has been archived by the owner on Nov 2, 2024. It is now read-only.

Commit

Permalink
Fix errors when running the flatpak
Browse files Browse the repository at this point in the history
No more errors!
  • Loading branch information
Eggmanplant committed May 2, 2024
1 parent db38a02 commit d5a8bd0
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions flatpak/run.sh
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit d5a8bd0

Please sign in to comment.