don't use $ in RENPY_DIR

This commit is contained in:
HackerNCoder 2023-01-19 21:37:56 +01:00
parent 3d5b1ad379
commit c451251d97

View file

@ -33,7 +33,7 @@ except:
def renpy(args):
global in_renpy
command = [os.path.join(os.environ['$RENPY_DIR'], 'renpy.sh')]
command = [os.path.join(os.environ['RENPY_DIR'], 'renpy.sh')]
if in_renpy:
# cf. launcher/game/project.rpy
command = [sys.executable, '-EO', sys.argv[0]]