0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-02-02 04:19:08 -05:00

Merge pull request #5281 from penpot/ladybenko-9202-update-devenv

🔧 Add rustfmt to the devenv
This commit is contained in:
Andrey Antukh 2024-11-12 11:29:50 +01:00 committed by GitHub
commit 72313c770c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -263,7 +263,8 @@ RUN set -eux; \
chmod +x rustup-init; \
./rustup-init -y --no-modify-path --profile minimal --default-toolchain $RUST_VERSION --default-host ${rustArch}; \
rm rustup-init; \
chmod -R a+w $RUSTUP_HOME $CARGO_HOME;
chmod -R a+w $RUSTUP_HOME $CARGO_HOME; \
rustup component add rustfmt;
WORKDIR /usr/local