Closed Nathant995 closed 11 months ago
Update:
Launcher.yml is missing from release but download source directly and the yml is present
Hello, the guide instructs you to download and extract the source code file where all of the release files are located.
I'm trying to install jagex launcher to lutris on linux;
when I run manually from an install file following OP's instructions I get error; mapping values are not allowed here in
line 22 col 18;
mkdir_p(path)
^
here's the full def;
def mkdir_p(path): try: parent_path = Path(path) os.makedirs(parent_path.parent.absolute(), exist_ok=True) except OSError as exc: if exc.errno == errno.EEXIST and os.path.isdir(path): pass else: raise