We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16aa2a0 commit ff027e7Copy full SHA for ff027e7
1 file changed
packaging/snap/snapcraft.yaml
@@ -32,8 +32,6 @@ parts:
32
build-packages:
33
- nodejs
34
- npm
35
- - rustc
36
- - cargo
37
- libwebkit2gtk-4.1-dev
38
- build-essential
39
- curl
@@ -52,6 +50,10 @@ parts:
52
50
curl -fsSL https://deb.nodesource.com/setup_22.x | bash -
53
51
apt-get install -y nodejs
54
+ # Install Rust manually (System rustc is too old)
+ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
55
+ export PATH="$HOME/.cargo/bin:$PATH"
56
+
57
# Install Dependencies
58
npm ci
59
0 commit comments