mirror of
https://github.com/enso-org/enso.git
synced 2024-11-22 22:10:15 +03:00
11 lines
263 B
Bash
Executable File
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
|