mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-22 14:05:39 +00:00
Add Godot temp file location initialization
This commit is contained in:
parent
6524ff1beb
commit
6d2eb27c87
|
@ -132,6 +132,11 @@ if [[ ! -d "$rd_logs_folder/ES-DE" ]]; then
|
||||||
dir_prep "$rd_logs_folder/ES-DE" "$es_source_logs"
|
dir_prep "$rd_logs_folder/ES-DE" "$es_source_logs"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Initialize location of Godot temp data files, if it doesn't exist
|
||||||
|
if [[ ! -d "/var/config/retrodeck/godot" ]]; then
|
||||||
|
create_dir "/var/config/retrodeck/godot"
|
||||||
|
fi
|
||||||
|
|
||||||
# We moved the lockfile in /var/config/retrodeck in order to solve issue #53 - Remove in a few versions
|
# We moved the lockfile in /var/config/retrodeck in order to solve issue #53 - Remove in a few versions
|
||||||
if [[ -f "$HOME/retrodeck/.lock" ]]; then
|
if [[ -f "$HOME/retrodeck/.lock" ]]; then
|
||||||
mv "$HOME/retrodeck/.lock" $lockfile
|
mv "$HOME/retrodeck/.lock" $lockfile
|
||||||
|
|
Loading…
Reference in a new issue