Skip to content

Commit ccca6b2

Browse files
committed
[SPARK-27626][K8S] Fix docker-image-tool.sh to be robust in non-bash shell env
1 parent 3ecafb0 commit ccca6b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/docker-image-tool.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ do
282282
if ! minikube status 1>/dev/null; then
283283
error "Cannot contact minikube. Make sure it's running."
284284
fi
285-
eval $(minikube docker-env)
285+
eval $(minikube docker-env --shell bash)
286286
;;
287287
u) SPARK_UID=${OPTARG};;
288288
esac

0 commit comments

Comments
 (0)