mirror of
https://github.com/redstrate/Novus.git
synced 2025-05-05 01:17:45 +00:00
Add tarball script
This commit is contained in:
parent
1ed9edafdd
commit
ff4d5e8456
2 changed files with 14 additions and 0 deletions
0
scripts/config.toml
Normal file
0
scripts/config.toml
Normal file
14
scripts/tarball.sh
Executable file
14
scripts/tarball.sh
Executable file
|
@ -0,0 +1,14 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# ensure the submodules are up to date
|
||||||
|
git submodule init
|
||||||
|
git submodule update
|
||||||
|
|
||||||
|
# begin vendoring cargo dependencies
|
||||||
|
cd extern/libphysis
|
||||||
|
cargo vendor ../../cargo-vendored
|
||||||
|
mkdir .cargo
|
||||||
|
cp ../../scripts/config.toml .cargo/config.toml
|
||||||
|
cd ../../
|
||||||
|
|
||||||
|
tar --exclude='cmake-build*' --exclude='.idea' --exclude='.clang-format' --exclude='novus-source.tar.gz' --exclude-vcs -zcvf ../novus-source.tar.gz .
|
Loading…
Add table
Reference in a new issue