From 14bc520eed5f1632c6c9b27e3eef7eb7253c7ea2 Mon Sep 17 00:00:00 2001 From: Benjamin G Date: Wed, 18 Jan 2023 21:33:41 -0600 Subject: [PATCH] make wget less verbose, fix docs slightly --- README.md | 2 +- action.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4b44bcc..52306ae 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ You must use a MacOS or Linux runner. Windows is not supported, and probably nev # This is where Theos will be git cloned from. theos-src: 'https://github.com/theos/theos' - # This is where the Theos SDKs will be git cloned from. + # This is where the Theos SDKs will be downloaded from. # Useful for using frameworks that aren't in the official repo. theos-sdks: 'https://github.com/theos/sdks' diff --git a/action.yml b/action.yml index 4b45d57..be3eadf 100644 --- a/action.yml +++ b/action.yml @@ -15,7 +15,7 @@ inputs: required: false default: "https://github.com/theos/theos" theos-sdks: - description: "Where to clone the iOS SDKs from (git URL)" + description: "Where to clone the iOS SDKs from (GitHub repository URL)" required: false default: "https://github.com/theos/sdks" orion: @@ -60,7 +60,7 @@ runs: echo "Linux toolchain already cached, skipping..." else TMP_DL=$(mktemp -d) - wget https://github.com/CRKatri/llvm-project/releases/download/swift-5.3.2-RELEASE/swift-5.3.2-RELEASE-ubuntu20.04.tar.zst -P $TMP_DL + wget --no-verbose https://github.com/CRKatri/llvm-project/releases/download/swift-5.3.2-RELEASE/swift-5.3.2-RELEASE-ubuntu20.04.tar.zst -P $TMP_DL TMP=$(mktemp -d) tar -xvf $TMP_DL/swift-5.3.2-RELEASE-ubuntu20.04.tar.zst -C $TMP mkdir -p $THEOS/toolchain/linux/iphone $THEOS/toolchain/swift @@ -76,7 +76,7 @@ runs: echo "Theos SDKs already cached, skipping..." else cd ${{ inputs.theos-dir }}/sdks - curl -sLO ${{ inputs.theos-sdks }}/archive/master.zip + wget --no-verbose ${{ inputs.theos-sdks }}/archive/master.zip TMP=$(mktemp -d) 7z x master.zip -o$TMP mv $TMP/*-master/*.sdk $THEOS/sdks