From b6e5d2a2ec65812c0f8f46a7cba742a9c5f1ed7d Mon Sep 17 00:00:00 2001 From: Riley Housden Date: Fri, 19 Aug 2022 22:46:45 -0400 Subject: [PATCH] fix install script --- install.xsh | 1 - 1 file changed, 1 deletion(-) diff --git a/install.xsh b/install.xsh index 04689b8..e73daa3 100644 --- a/install.xsh +++ b/install.xsh @@ -13,7 +13,6 @@ with Path("service.service").open("r") as fp: text = fp.read() text = text.replace("$user$", user) text = text.replace("$root$", str(root)) - text = text.replace("$ram$", str(ram)) $(cp service.service @(user).service) with Path(f"{user}.service").open("w+") as fp: fp.write(text)