Skip to content

Commit 744ccc1

Browse files
committed
Move install-deps.sh to top-level directory
1 parent 019999a commit 744ccc1

4 files changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/build-setup.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
- name: Install system dependencies
2+
run: ./scripts/install-deps.sh

.github/workflows/rust.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
- name: Install system dependencies
3333
if: matrix.project == 'cli' && (matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest')
34-
run: scripts/install-deps.sh
34+
run: ../scripts/install-deps.sh
3535

3636
- name: Cache cargo registry
3737
uses: actions/cache@v4
@@ -89,7 +89,7 @@ jobs:
8989

9090
- name: Install system dependencies
9191
if: matrix.project == 'cli' && (matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest')
92-
run: scripts/install-deps.sh
92+
run: ../scripts/install-deps.sh
9393

9494
- name: Check
9595
run: cargo check --all-features

dist-workspace.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ install-path = "CARGO_HOME"
1818
# Whether to install an updater program
1919
install-updater = true
2020
# Dependencies
21-
github-build-setup = "cli/scripts/install-deps.sh"
21+
github-build-setup = "../../scripts/install-deps.sh"

0 commit comments

Comments
 (0)