5 lines
171 B
Bash
Executable file
5 lines
171 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -Eeuo pipefail
|
|
|
|
SCRIPT_DIR="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd)"
|
|
exec "${SCRIPT_DIR}/versions/vault-inventory-report-v1.0.sh" "$@"
|