From 25d7842c78ec573a4d8d5e9fcf30b73aac43b882 Mon Sep 17 00:00:00 2001 From: Ansible Deploy Date: Mon, 30 Aug 2021 15:44:43 +0000 Subject: [PATCH] fixed adding elab users --- elab_users/users.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elab_users/users.py b/elab_users/users.py index 737d721..9ee4f89 100644 --- a/elab_users/users.py +++ b/elab_users/users.py @@ -74,7 +74,7 @@ class ElabUser: print(tmpdir) print(list(tmpdir.iterdir())) handler.check_call( - ["svn", "add", str(tmpdir / "*")], shell=True # noqa: S604 + ["svn", "add", "--force", str(tmpdir) + "/"] # noqa: S604 ) handler.check_call( ["svn", "commit", "-m", f"New User: {self.name}", str(tmpdir)]