1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-23 12:57:45 +00:00

Yet more build script improvements

This commit is contained in:
Joshua Goins 2024-03-22 18:00:32 -04:00
parent ec7f68ce92
commit 007db4cd2d

View file

@ -1,14 +1,14 @@
#!/bin/sh #!/bin/sh
# ensure the submodules are up to date # ensure the submodules are up to date
git submodule init git submodule init &&
git submodule update git submodule update &&
# begin vendoring cargo dependencies # begin vendoring cargo dependencies
cd external/libphysis cd external/libphysis &&
cargo vendor-filterer --platform=x86_64-unknown-linux-gnu ../../cargo-vendored cargo vendor-filterer --platform=x86_64-unknown-linux-gnu ../../cargo-vendored &&
mkdir .cargo mkdir .cargo &&
cp ../../scripts/config.toml .cargo/config.toml cp ../../scripts/config.toml .cargo/config.toml &&
cd ../../ cd ../../ &&
tar --exclude='cmake-build*' --exclude='.idea' --exclude='.clang-format' --exclude='astra-source.tar.gz' --exclude-vcs -zcvf ../astra-source.tar.gz . tar --exclude='cmake-build*' --exclude='.idea' --exclude='.clang-format' --exclude='astra-source.tar.gz' --exclude-vcs -zcvf ../astra-source.tar.gz .