mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2024-11-11 19:04:50 +01:00
Make the "save delete" function observe the new name
This commit is contained in:
parent
d780520d51
commit
1af1f4e6f6
2 changed files with 4 additions and 3 deletions
|
@ -53,6 +53,7 @@ _global_script_class_icons={
|
||||||
config/name="Oh My Git!"
|
config/name="Oh My Git!"
|
||||||
run/main_scene="res://scenes/title.tscn"
|
run/main_scene="res://scenes/title.tscn"
|
||||||
config/use_custom_user_dir=true
|
config/use_custom_user_dir=true
|
||||||
|
config/custom_user_dir_name="Oh My Git"
|
||||||
boot_splash/bg_color=Color( 0, 0, 0, 1 )
|
boot_splash/bg_color=Color( 0, 0, 0, 1 )
|
||||||
|
|
||||||
[autoload]
|
[autoload]
|
||||||
|
|
|
@ -88,11 +88,11 @@ func careful_delete(path_inside):
|
||||||
var os = OS.get_name()
|
var os = OS.get_name()
|
||||||
|
|
||||||
if os == "X11":
|
if os == "X11":
|
||||||
expected_prefix = "/home/%s/.local/share/Git Guru/tmp/" % OS.get_environment("USER")
|
expected_prefix = "/home/%s/.local/share/Oh My Git/tmp/" % OS.get_environment("USER")
|
||||||
elif os == "OSX":
|
elif os == "OSX":
|
||||||
expected_prefix = "/Users/%s/Library/Application Support/Git Guru/tmp/" % OS.get_environment("USER")
|
expected_prefix = "/Users/%s/Library/Application Support/Oh My Git/tmp/" % OS.get_environment("USER")
|
||||||
elif os == "Windows":
|
elif os == "Windows":
|
||||||
expected_prefix = "C:/Users/%s/AppData/Roaming/Git Guru/tmp/" % OS.get_environment("USERNAME")
|
expected_prefix = "C:/Users/%s/AppData/Roaming/Oh My Git/tmp/" % OS.get_environment("USERNAME")
|
||||||
else:
|
else:
|
||||||
helpers.crash("Unsupported OS: %s" % os)
|
helpers.crash("Unsupported OS: %s" % os)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue