diff --git a/tools/init.py b/tools/init.py index 857b459..6b5cecb 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/", shell=True) # * create new cathedral user subprocess.run(["useradd", "-c", "cathedral", "-M", "cathedral"])