Skip to content

Commit beb7f8f

Browse files
committed
HIVE-28821: Forward CLI Arguments from hive script to hive-config.sh
1 parent 3abe516 commit beb7f8f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

bin/hive

+3-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ esac
2323
bin=`dirname "$0"`
2424
bin=`cd "$bin"; pwd`
2525

26-
. "$bin"/hive-config.sh
26+
ARGS=("$@")
27+
. "$bin"/hive-config.sh "$@"
28+
set -- "${ARGS[@]}"
2729

2830
SERVICE=""
2931
HELP=""

0 commit comments

Comments
 (0)