From 5b0f08362acd081facb164824af1c202a8a22611 Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Tue, 12 Sep 2023 10:28:12 -0600 Subject: [PATCH] Fixed typo --- action.yml | 1 - entrypoint.sh | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 0dada4a..3541e6c 100644 --- a/action.yml +++ b/action.yml @@ -12,7 +12,6 @@ runs: - name: Get cache directory id: cache-dir run: | - set -x if [[ "${{ runner.os }}" == "Linux" ]]; then cache_dir="/var/cache/apt/archives/" elif [[ "${{ runner.os }}" == "macOS" ]]; then diff --git a/entrypoint.sh b/entrypoint.sh index d3dc836..bc424d6 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -35,7 +35,7 @@ if [[ "$(uname -s)" == "Linux" ]]; then sudo apt-get update # Install PostgreSQL - sudo apt-get apt-get install -y "postgresql-$INPUT_POSTGRESQL_VERSION" + sudo apt-get install -y "postgresql-$INPUT_POSTGRESQL_VERSION" elif [[ "$(uname -s)" == "NT"* ]] || [[ "$(uname -s)" == "MINGW"* ]] || [[ "$(uname -s)" == *"MSYS"* ]]; then choco install "postgresql$INPUT_POSTGRESQL_VERSION" -y --no-progress elif [[ "$(uname -s)" == "Darwin" ]]; then