mirror of
https://github.com/enso-org/enso.git
synced 2024-11-22 21:51:05 +03:00
ad69eeb4ad
Merged the build script into main repository. Some related cleanups.
13 lines
434 B
Bash
Executable File
13 lines
434 B
Bash
Executable File
#!/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-build-cli
|
|
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" $@
|