mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2025-01-10 21:25:25 +00:00
6acb962e72
reduce by 35-40% size of binaries and archive
6 lines
153 B
Bash
Executable file
6 lines
153 B
Bash
Executable file
#!/bin/bash
|
|
mkdir bin
|
|
cp target/release/{plume,plm} bin
|
|
cp "$(which diesel)" bin
|
|
strip -s bin/*
|
|
tar -cvzf plume.tar.gz bin/ static/ migrations/$FEATURES
|