1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-21 20:27:45 +00:00

Attempt to exclude large files from source tar.gz

This commit is contained in:
Joshua Goins 2024-03-22 17:32:11 -04:00
parent e044a4783b
commit 1932ea0aa1

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 ../../