From 5f9ee642c46610b55be63e9b51b9e076e4211c4d Mon Sep 17 00:00:00 2001 From: Tao Sun Date: Mon, 15 Nov 2021 23:41:47 +0100 Subject: [PATCH] fix: renku not found error (#193) renku is now in either `$HOME/.renku/bin` or `/share/bin` (batch) --- docker/py/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/py/entrypoint.sh b/docker/py/entrypoint.sh index f5adddca..38f4ba4a 100755 --- a/docker/py/entrypoint.sh +++ b/docker/py/entrypoint.sh @@ -22,7 +22,7 @@ then fi # install git hooks -~/.local/bin/renku githooks install || true +renku githooks install || true # run the post-init script in the root directory (i.e. coming from the image) if [ -f "/post-init.sh" ]; then