mirror of
https://github.com/kubevirt/containerized-data-importer.git
synced 2025-06-03 06:30:22 +00:00
13 lines
173 B
Bash
Executable File
13 lines
173 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
SCRIPT_ROOT=$(dirname "${BASH_SOURCE}")/..
|
|
|
|
source ${SCRIPT_ROOT}/cluster/gocli.sh
|
|
|
|
if [[ -t 1 ]]; then
|
|
$gocli_interactive "$@"
|
|
else
|
|
$gocli "$@"
|
|
fi
|
|
|