mirror of
https://github.com/enso-org/enso.git
synced 2024-11-23 16:18:23 +03:00
13 lines
431 B
Bash
13 lines
431 B
Bash
|
#!/bin/bash
|
||
|
set -e # Exit on error.
|
||
|
|
||
|
# Get the directory of the script, as per https://stackoverflow.com/a/246128
|
||
|
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
||
|
|
||
|
BIN_CRATE_NAME=enso-build3
|
||
|
TARGET_DIR="${SCRIPT_DIR}/target/enso-build/"
|
||
|
TARGET_EXE="${TARGET_DIR}buildscript/${BIN_CRATE_NAME}"
|
||
|
|
||
|
cargo build --profile buildscript --target-dir "$TARGET_DIR" --package ${BIN_CRATE_NAME}
|
||
|
"$TARGET_EXE" $@
|