mirror of
https://github.com/edera-dev/krata.git
synced 2025-08-03 13:11:31 +00:00
9 lines
152 B
Bash
9 lines
152 B
Bash
![]() |
#!/bin/sh
|
||
|
set -e
|
||
|
|
||
|
TOOLS_DIR="$(dirname "${0}")"
|
||
|
RUST_TARGET="$("${TOOLS_DIR}/target.sh")"
|
||
|
|
||
|
export CARGO_BUILD_TARGET="${RUST_TARGET}"
|
||
|
exec cargo "${@}"
|