6 lines
242 B
Bash
Executable file
6 lines
242 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
SCRIPT_DIR="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd)"
|
|
DEPOT_ROOT="${SCRIPT_DIR%/depot/*}/depot"
|
|
|
|
exec "$(nix-build "$DEPOT_ROOT" -A ops.vault.cfg.terraform --no-out-link --option builders '')" "$@"
|