From 075bb4e8139ba443e74698a1febe5ae56a2d982b Mon Sep 17 00:00:00 2001 From: Oz Date: Sun, 17 Nov 2024 14:31:47 +0200 Subject: [PATCH] fix path --- .github/workflows/main.yml | 4 ++-- scripts/package.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 78fc41d..5a0ffc3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,7 +8,7 @@ on: jobs: build-mac: runs-on: macos-latest - needs: build-linux # TODO: remove this + # needs: build-linux # TODO: remove this env: TAG: ${{ github.ref_name }} steps: @@ -37,7 +37,7 @@ jobs: build-linux: runs-on: ubuntu-latest - # needs: build-mac # TODO: remove this + needs: build-mac # TODO: remove this env: TAG: ${{ github.ref_name }} steps: diff --git a/scripts/package.sh b/scripts/package.sh index 2f0c49b..55c2656 100755 --- a/scripts/package.sh +++ b/scripts/package.sh @@ -89,7 +89,7 @@ if [[ $HOST_TRIPLE == *apple-darwin* ]]; then RUST_BIN="./deploy/rust/bin" LLVM_BIN="./deploy/llvm/bin" - ./sign.sh "$RUST_BIN/rustc" \ + ./scripts/sign.sh "$RUST_BIN/rustc" \ "$RUST_BIN/rustdoc" \ "$RUST_BIN/cargo" \ "$LLVM_BIN/llvm-objdump" \