Make config dir if necessary

This commit is contained in:
the-sane 2024-01-09 16:46:51 -05:00
parent 91e7378666
commit d25eb444c7

View File

@ -2593,6 +2593,9 @@ if [ "$is_firstrun" = "true" ]; then
install_game
fi
# Store the first run state for subsequent launches
if [ ! -d "$conf_dir/$conf_subdir" ]; then
mkdir -p "$conf_dir/$conf_subdir"
fi
echo "false" > "$conf_dir/$conf_subdir/$firstrun_conf"
fi