Skip to content

Commit

Permalink
Fix last commit but this time we're using which to determine the path…
Browse files Browse the repository at this point in the history
… to the file
  • Loading branch information
Dadoum committed May 17, 2024
1 parent a23b857 commit a50bbb0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-qt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
LDC_VERSION=$(ldc2 --version | head -n 1 | grep -oE "[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*")
curl -LO https://github.com/phracker/MacOSX-SDKs/releases/download/11.3/MacOSX11.0.sdk.tar.xz
tar -xf ./MacOSX11.0.sdk.tar.xz -C $HOME
cp $HOME/dlang/ldc-latest/etc/ldc2.conf $HOME/.ldc/ldc2.conf
cp $(dirname $(which ldc2))/../etc/ldc2.conf $HOME/.ldc/ldc2.conf
cat << EOF | tee $HOME/.ldc/ldc2.conf
"x86_64-apple-darwin":
{
Expand Down Expand Up @@ -176,7 +176,7 @@ jobs:
LDC_VERSION=$(ldc2 --version | head -n 1 | grep -oE "[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*")
curl -LO https://github.com/phracker/MacOSX-SDKs/releases/download/11.3/MacOSX11.0.sdk.tar.xz
tar -xf ./MacOSX11.0.sdk.tar.xz -C $HOME
cp $HOME/dlang/ldc-latest/etc/ldc2.conf $HOME/.ldc/ldc2.conf
cp $(dirname $(which ldc2))/../etc/ldc2.conf $HOME/.ldc/ldc2.conf
cat << EOF | tee $HOME/.ldc/ldc2.conf
"arm64-apple-macos":
{
Expand Down

0 comments on commit a50bbb0

Please sign in to comment.