mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-05 19:59:30 +00:00
90f6ef0380
fix #570
6 lines
158 B
Bash
Executable file
6 lines
158 B
Bash
Executable file
#!/bin/bash
|
|
mkdir bin
|
|
cp target/release/{plume,plm} bin
|
|
strip -s bin/*
|
|
tar -cvzf plume.tar.gz bin/ static/
|
|
tar -cvzf wasm.tar.gz static/plume-front.{js,wasm}
|