From dda794f3286ef9fb469f5de1bc72327b1b1f2e65 Mon Sep 17 00:00:00 2001 From: Nicolas Arenas Date: Wed, 13 Nov 2024 20:57:15 +0100 Subject: [PATCH] Fix path for installer --- python-installer/oginstaller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python-installer/oginstaller.py b/python-installer/oginstaller.py index 991c424..8d7a374 100755 --- a/python-installer/oginstaller.py +++ b/python-installer/oginstaller.py @@ -2,7 +2,7 @@ import curses import json import os -CONFIGS_DIR = "./" +CONFIGS_DIR = "/tmp/oginstall" os.makedirs(CONFIGS_DIR, exist_ok=True) def main(stdscr):