Skip to content

Commit 1c0adf5

Browse files
fix: rust install in package builds
1 parent e4dfeea commit 1c0adf5

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

pkg/recipes/lact-headless/recipe.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ env:
2828
configure:
2929
steps:
3030
- cmd: curl -o /tmp/install_rust.sh $RUSTUP_URL
31-
- cmd: sh /tmp/install_rust.sh -y --default-toolchain 1.80
31+
- cmd: sh /tmp/install_rust.sh -y
32+
- cmd: rustup default 1.80
3233
- cmd: pacman -Syu --noconfirm
3334
pkg: true
3435
build:

pkg/recipes/lact-libadwaita/recipe.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ env:
2626
configure:
2727
steps:
2828
- cmd: curl -o /tmp/install_rust.sh $RUSTUP_URL
29-
- cmd: sh /tmp/install_rust.sh -y --default-toolchain 1.80
29+
- cmd: sh /tmp/install_rust.sh -y
30+
- cmd: rustup default 1.80
3031
- cmd: >-
3132
curl -o /tmp/blueprint-compiler.deb http://de.archive.ubuntu.com/ubuntu/pool/universe/b/blueprint-compiler/blueprint-compiler_0.14.0-1_all.deb &&
3233
apt install -y /tmp/blueprint-compiler.deb

pkg/recipes/lact/recipe.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ env:
2828
configure:
2929
steps:
3030
- cmd: curl -o /tmp/install_rust.sh $RUSTUP_URL
31-
- cmd: sh /tmp/install_rust.sh -y --default-toolchain 1.80
31+
- cmd: sh /tmp/install_rust.sh -y
32+
- cmd: rustup default 1.80
3233
- cmd: >-
3334
curl -o /tmp/blueprint-compiler.deb http://de.archive.ubuntu.com/ubuntu/pool/universe/b/blueprint-compiler/blueprint-compiler_0.14.0-1_all.deb &&
3435
apt install -y /tmp/blueprint-compiler.deb

0 commit comments

Comments
 (0)