1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-20 11:47:46 +00:00

Attempt to exclude large files from source tar.gz

(cherry picked from commit 1932ea0aa1)
This commit is contained in:
Joshua Goins 2024-03-22 17:32:11 -04:00
parent aad9ab46a3
commit 03f46612f4

View file

@ -7,6 +7,9 @@ git submodule update
# begin vendoring cargo dependencies # begin vendoring cargo dependencies
cd external/libphysis cd external/libphysis
cargo vendor ../../cargo-vendored cargo vendor ../../cargo-vendored
# workaround for https://github.com/rust-lang/cargo/issues/7058, winapi libraries take up a ton of space
rm -fr ../../cargo-vendored/winapi*gnu*
rm -fr ../../cargo-vendored/windows*
mkdir .cargo mkdir .cargo
cp ../../scripts/config.toml .cargo/config.toml cp ../../scripts/config.toml .cargo/config.toml
cd ../../ cd ../../