mirror of
https://github.com/ClementTsang/bottom.git
synced 2025-04-08 17:05:59 +02:00
* refactor: separate schema generation to its own binary, go back to lib-bin setup Decided it might be nicer to separate the schema generation bit to its own binary. This does mean that we have to go back to the lib-bin system, as otherwise passing shared code is _really_ hard. * handle versioning * run fmt
9 lines
140 B
Bash
Executable File
9 lines
140 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")";
|
|
cd ../..
|
|
|
|
cargo run --bin schema --features="generate_schema" -- $1 > schema/nightly/bottom.json
|