From 7a388c7fe00520d176ce6b7a46d2e088b844c35f Mon Sep 17 00:00:00 2001 From: XargonWan Date: Tue, 5 Nov 2024 12:21:17 +0900 Subject: [PATCH] Removing check on install dependencies script --- .github/workflows/install_dependencies.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/install_dependencies.yml b/.github/workflows/install_dependencies.yml index f97f0fd..17ff0f6 100644 --- a/.github/workflows/install_dependencies.yml +++ b/.github/workflows/install_dependencies.yml @@ -11,9 +11,4 @@ jobs: - name: "Install dependencies" run: | echo "Starting dependency installation..." - if [ -f "${GITHUB_WORKSPACE}/automation_tools/install_dependencies.sh" ]; then - /bin/bash "${GITHUB_WORKSPACE}/automation_tools/install_dependencies.sh" - else - echo "Dependency installation script not found." - exit 1 - fi \ No newline at end of file + /bin/bash "${GITHUB_WORKSPACE}/automation_tools/install_dependencies.sh" \ No newline at end of file