mirror of
https://github.com/ClementTsang/bottom.git
synced 2026-07-09 14:07:37 +00:00
40254c24e0
This change should fix the issue around `cargo install` being confused by the schema generation binary by just moving it entirely into a separate tool "crate".
9 lines
138 B
Bash
Executable File
9 lines
138 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")";
|
|
cd ../..
|
|
|
|
cargo run --manifest-path tools/schema_gen/Cargo.toml -- $1 > schema/v$1/bottom.json
|