enso/run
2023-11-29 20:35:06 +01:00

11 lines
263 B
Bash
Executable File

#!/usr/bin/env bash
set -e # Exit on error.
# Change working directory to the script's directory.
pushd "$(dirname "$0")" > /dev/null
cargo run --profile buildscript --package enso-build-cli -- $@
# Revert to the original working directory.
popd > /dev/null