mirror of
https://github.com/digital-asset/daml.git
synced 2024-11-10 10:46:11 +03:00
9 lines
358 B
Bash
Executable File
9 lines
358 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Meant to be linked to from `dev-env/bin`, symlink should be named after the
|
|
# tool. Execute a Nix tool from a derivation that creates a `result` directory.
|
|
|
|
DADE_CURRENT_SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
source "$DADE_CURRENT_SCRIPT_DIR/../lib/dade-common"
|
|
base=$(basename $0)
|
|
execTool $base out $base "$@"
|