commit 28b8c5aea289ccd334682c1bdef54244d0cd51b9
parent a476d5869f812f75825254448f0c5d4660053571
Author: gearsix <gearsix@tuta.io>
Date: Thu, 11 Nov 2021 12:29:42 +0000
typo fix causing install#makedirs call to fail
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/dotfm.py b/src/dotfm.py
@@ -184,7 +184,7 @@ def install(dotfile):
location = install_getlocation(known)
aliases = install_getaliases(known)
if not os.path.exists(os.path.dirname(location)):
- os.makedirs(os.path.dirname(locations), exist_ok=True)
+ os.makedirs(os.path.dirname(location), exist_ok=True)
if dotfile != location:
if os.path.lexists(location):
install_oca(dotfile, location)