From 683ca64c43f898af255cdd8dd97d298becdf73e8 Mon Sep 17 00:00:00 2001 From: nick Date: Mon, 31 Oct 2022 16:29:00 -0400 Subject: [PATCH] forgot '/share' in linux file path --- tfscript/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tfscript/cli.py b/tfscript/cli.py index 368eb6a..b4d35fd 100644 --- a/tfscript/cli.py +++ b/tfscript/cli.py @@ -133,7 +133,7 @@ def getTargetDir(systemName): return None elif systemName == 'Linux': - return expanduser('~/.local/Steam') + return expanduser('~/.local/share/Steam') elif systemName == 'Java': warn('Java-based OSes are not supported yet by tfscript.', category=RuntimeWarning)