From 8469729eeaed3ad18122fbb9d6da521721e09fb5 Mon Sep 17 00:00:00 2001 From: cynic Date: Mon, 31 Oct 2022 11:59:58 -0400 Subject: [PATCH] path error when copying skel --- tools/init.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/init.py b/tools/init.py index 90296fb..a25e5f6 100644 --- a/tools/init.py +++ b/tools/init.py @@ -26,7 +26,7 @@ subprocess.run(["mkdir", "/var/cathedral"]) subprocess.run(["git", "clone", "https://github.com/kurisufriend/cathedral", "/var/cathedral"]) # * copy new template files to /etc/skel -subprocess.run(["cp", "-r", "/var/cathedral/tools/skel/*", "/etc/skel"]) +subprocess.run(["cp", "-r", "/var/cathedral/tools/skel/*", "/etc/skel/"]) # * create new cathedral user subprocess.run(["useradd", "-c", "cathedral", "-M", "-s", "/usr/bin/nologin"])