From b7af3efcb5c5239fe2fcaef4ca42613434127c4e Mon Sep 17 00:00:00 2001 From: Remco van 't Veer Date: Wed, 10 Jul 2024 11:16:35 +0200 Subject: [PATCH] Fix release_check make target --- .github/workflows/install-binaries.sh | 12 ++++++++---- .gitignore | 11 +++++------ 2 files changed, 13 insertions(+), 10 deletions(-) diff --git a/.github/workflows/install-binaries.sh b/.github/workflows/install-binaries.sh index 9f02a8b..2ded5b1 100755 --- a/.github/workflows/install-binaries.sh +++ b/.github/workflows/install-binaries.sh @@ -9,11 +9,15 @@ BABASHKA_VERSION="1.3.188" BABASHKA_ARCH="linux-amd64" if [ ! -x "bin/clojure" ]; then - curl -O "https://download.clojure.org/install/linux-install-${CLOJURE_VERSION}.sh" - bash "linux-install-${CLOJURE_VERSION}.sh" -p "$(pwd)" + F="linux-install-${CLOJURE_VERSION}.sh" + curl -O "https://download.clojure.org/install/${F}" + bash "${F}" -p "$(pwd)" + rm -f "${F}" fi if [ ! -x "bin/bb" ]; then - curl -LO "https://github.com/babashka/babashka/releases/download/v${BABASHKA_VERSION}/babashka-${BABASHKA_VERSION}-${BABASHKA_ARCH}.tar.gz" - tar -zxf "babashka-${BABASHKA_VERSION}-${BABASHKA_ARCH}.tar.gz" -C bin + F="babashka-${BABASHKA_VERSION}-${BABASHKA_ARCH}.tar.gz" + curl -LO "https://github.com/babashka/babashka/releases/download/v${BABASHKA_VERSION}/${F}" + tar -zxf "${F}" -C bin + rm -f "${F}" fi diff --git a/.gitignore b/.gitignore index 5e8c752..d2c227b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,14 +1,13 @@ +*.jar +/.clj-kondo/ /.cpcache/ /.envrc /bin/ /lib/ -eduhub-validator* -*.tar.gz -/report.html /observations.edn +/report.html /share/ -/target/ -*.jar -/.clj-kondo/ /src/nl/surf/eduhub_validator/version.txt +/target/ /usage.txt.generated +eduhub-validator*