Plume/script/generate_artifact.sh

7 lines
158 B
Bash
Raw Normal View History

#!/bin/bash
mkdir bin
cp target/release/{plume,plm} bin
strip -s bin/*
tar -cvzf plume.tar.gz bin/ static/
2021-02-12 05:31:22 +01:00
tar -cvzf wasm.tar.gz static/plume_front.{js,wasm}