Skip to content

Commit

Permalink
make wget less verbose, fix docs slightly
Browse files Browse the repository at this point in the history
  • Loading branch information
Randomblock1 committed Jan 19, 2023
1 parent d72ebbd commit 14bc520
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'

Expand Down
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 14bc520

Please sign in to comment.