6acb962e72
reduce by 35-40% size of binaries and archive
7 lines
153 B
Bash
Executable File
7 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
|