mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-14 07:51:01 +00:00
49bb8cb0bc
* import migrations via macro * panic on database not to the latest migration * add subcommand to plm * create migration that run tantivy index creation * remove diesel_cli from places it was * use our migration system for tests * create table __diesel_schema_migrations if needed
5 lines
128 B
Bash
Executable file
5 lines
128 B
Bash
Executable file
#!/bin/bash
|
|
mkdir bin
|
|
cp target/release/{plume,plm} bin
|
|
strip -s bin/*
|
|
tar -cvzf plume.tar.gz bin/ static/ migrations/$FEATURES
|