Skip to content

Commit 8dcf0e9

Browse files
committed
imp(diff-bitte): don't use defaults, rather choose specifically
1 parent 02289e1 commit 8dcf0e9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

diff-bitte.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ function show_help() {
1515
echo 'options:'
1616
echo '-h, --help show help'
1717
echo '-c, --commit BITTE_COMMIT diffs against BITTE_COMMIT'
18-
echo '-n, --node NODE add nodes to diff (default: core-1)'
19-
echo '-t, --terraform TFTARGET add terraform targets to diff (default: hydrate-cluster)'
18+
echo '-n, --node NODE add nodes to diff'
19+
echo '-t, --terraform TFTARGET add terraform targets to diff'
2020
echo ' '
2121
echo 'BITTE_COMMIT a commit rev from the bitte repository and the future'
2222
echo ' right-hand side of the comparision'
@@ -28,8 +28,8 @@ function show_help() {
2828
test $# -eq 0 && (show_help && exit 1)
2929

3030
BITTE_REPO="input-output-hk/bitte"
31-
NODES=(core-1)
32-
TFTARGET=(hydrate-cluster)
31+
NODES=()
32+
TFTARGET=()
3333

3434
while test $# -gt 0; do
3535
case "$1" in

0 commit comments

Comments
 (0)