diff --git a/oml/stages/config.py b/oml/stages/config.py index d34427e..64d44eb 100644 --- a/oml/stages/config.py +++ b/oml/stages/config.py @@ -45,6 +45,8 @@ if len(sys.argv) > 1: if not lv["osName"] in ["windows","linux","macos"]: print(colored(colorama.Fore.YELLOW,"\nWarning, unsupported OS detected: '" +lv["osName"]+ "'"),file=sys.stderr) print("Needs to be either windows, linux or macos. Define it with osName=name in the config.",file=sys.stderr) + print(colored(colorama.Fore.PURPLE,"Falling back to assuming Linux.")) + lv["osName"] = "linux" print("") if not "version" in lv: lv["version"] = input("Version ID: ")