From 6d686b31227bc9d3c1d259be7eb790730bfeb9ac Mon Sep 17 00:00:00 2001 From: PAlexanderFranklin Date: Thu, 21 Mar 2024 12:44:56 -0700 Subject: [PATCH] Add quotation marks cause ssh -T complained about -e option --- Shilohimage | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Shilohimage b/Shilohimage index f5a9eee7..38547fc8 100644 --- a/Shilohimage +++ b/Shilohimage @@ -102,11 +102,11 @@ USER frappe RUN mkdir -p /home/frappe/.ssh RUN echo -e "Host *\n\tStrictHostKeyChecking no\n\tIdentityFile /run/secrets/user_ssh_key\n" >> /home/frappe/.ssh/config -RUN ssh -T git@githaven.org:2222/Shiloh/brotherton-erpnext.git +RUN ssh -T "git@githaven.org:2222/Shiloh/brotherton-erpnext.git" ARG FRAPPE_BRANCH=version-15 ARG FRAPPE_PATH=https://github.com/frappe/frappe -ARG ERPNEXT_REPO=ssh://git@githaven.org:2222/Shiloh/brotherton-erpnext.git +ARG ERPNEXT_REPO="ssh://git@githaven.org:2222/Shiloh/brotherton-erpnext.git" ARG ERPNEXT_BRANCH=production RUN bench init \ --frappe-branch=${FRAPPE_BRANCH} \