Skip to content

Commit

Permalink
Run Release Test for Updating KubeConfig. (#3069)
Browse files Browse the repository at this point in the history
  • Loading branch information
orsenthil authored Oct 11, 2024
1 parent 751aedf commit 9b380da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/lib/set_kubeconfig.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

# This script sets the KUBECONFIG environment variable based on KUBE_CONFIG_PATH if not already set.

if [ -n "$KUBE_CONFIG_PATH" ] && [ -z "$KUBECONFIG" ]; then
if [ -n "${KUBE_CONFIG_PATH:-}" ] && [ -z "$KUBECONFIG" ]; then
export KUBECONFIG=$KUBE_CONFIG_PATH
fi

0 comments on commit 9b380da

Please sign in to comment.