From 83706aa812723f6d11560a0ef34528ed1b61fec6 Mon Sep 17 00:00:00 2001 From: Mohammad Mahdi Baghbani Pourvahid Date: Tue, 5 Dec 2023 10:11:11 +0000 Subject: [PATCH] modify: use pacthed makefile to avoid tty error --- ci/ocm-test-suite-init-deps.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/ci/ocm-test-suite-init-deps.sh b/ci/ocm-test-suite-init-deps.sh index aaae7ccd..ff5d3af8 100755 --- a/ci/ocm-test-suite-init-deps.sh +++ b/ci/ocm-test-suite-init-deps.sh @@ -46,8 +46,9 @@ BRANCH_REVA=v1.26.0 ${REPO_NEXTCLOUD_APP} \ nextcloud-sciencemesh \ && \ - docker run --rm -t \ + docker run --rm \ -v "$(pwd)/nextcloud-sciencemesh:/var/www/html/apps/sciencemesh" \ + -v "$(pwd)/ci/sciencemesh-patched.Makefile:/var/www/html/apps/sciencemesh/Makefile" \ --workdir /var/www/html/apps/sciencemesh \ pondersource/dev-stock-nextcloud-sciencemesh \ make composer @@ -71,8 +72,9 @@ BRANCH_REVA=v1.26.0 ${REPO_OWNCLOUD_APP} \ owncloud-sciencemesh \ && \ - docker run --rm -t \ + docker run --rm \ -v "$(pwd)/owncloud-sciencemesh:/var/www/html/apps/sciencemesh" \ + -v "$(pwd)/ci/sciencemesh-patched.Makefile:/var/www/html/apps/sciencemesh/Makefile" \ --workdir /var/www/html/apps/sciencemesh \ pondersource/dev-stock-owncloud-sciencemesh \ composer install @@ -88,7 +90,7 @@ BRANCH_REVA=v1.26.0 ${REPO_REVA} \ reva \ && \ - docker run --rm -t \ + docker run --rm \ -v "$(pwd)/reva:/reva-build" \ --workdir /reva-build \ golang:1.21.1-bullseye \