mirror of
https://github.com/ivabus/pantry
synced 2025-06-08 08:20:32 +03:00
evolution
This commit is contained in:
parent
4f56e7bcfb
commit
e8e86b8264
1 changed files with 8 additions and 2 deletions
|
@ -8,9 +8,15 @@ versions:
|
|||
build:
|
||||
dependencies:
|
||||
rust-lang.org/cargo: '*'
|
||||
working-directory: prql-compiler
|
||||
script: |
|
||||
cd ./prql-compiler
|
||||
cargo install --path . --root {{prefix}} --all-features
|
||||
if test {{version.major}} -eq 0 -a {{version.minor}} -lt 4; then
|
||||
cargo install --path . --root {{prefix}}
|
||||
elif test "{{version}}" = "0.4.0"; then
|
||||
cargo install --path . --root {{prefix}} --all-features
|
||||
else
|
||||
cargo install --path prqlc --root {{prefix}}
|
||||
fi
|
||||
|
||||
cd {{prefix}}/bin
|
||||
|
||||
|
|
Loading…
Reference in a new issue