This is an automated email from the ASF dual-hosted git repository.
gurwls223 pushed a commit to branch branch-4.0
in repository https://gitbox.apache.org/repos/asf/spark.git
The following commit(s) were added to refs/heads/branch-4.0 by this push:
new ac442a93a0a0 [SPARK-52225][BUILD][FOLLOW-UP] Change -it to -ti in
Docker execution in release script
ac442a93a0a0 is described below
commit ac442a93a0a0beb169f13d65b10de9b0ad0d3958
Author: Hyukjin Kwon <[email protected]>
AuthorDate: Fri May 23 11:54:45 2025 +0900
[SPARK-52225][BUILD][FOLLOW-UP] Change -it to -ti in Docker execution in
release script
### What changes were proposed in this pull request?
This PR is a followup of https://github.com/apache/spark/pull/50945 that
fixes it to -ti in Docker execution in release script.
### Why are the changes needed?
Typo of the option.
### Does this PR introduce _any_ user-facing change?
No, dev-only.
### How was this patch tested?
Manually.
### Was this patch authored or co-authored using generative AI tooling?
No.
Closes #50994 from HyukjinKwon/SPARK-52225-followup.
Authored-by: Hyukjin Kwon <[email protected]>
Signed-off-by: Hyukjin Kwon <[email protected]>
(cherry picked from commit 83e57b00733d43c4ddca56055947864ae28aff08)
Signed-off-by: Hyukjin Kwon <[email protected]>
---
dev/create-release/do-release-docker.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev/create-release/do-release-docker.sh
b/dev/create-release/do-release-docker.sh
index 4eb997951b14..433843da9492 100755
--- a/dev/create-release/do-release-docker.sh
+++ b/dev/create-release/do-release-docker.sh
@@ -163,7 +163,7 @@ if [ -n "$JAVA" ]; then
fi
echo "Building $RELEASE_TAG; output will be at $WORKDIR/output"
-docker $([ -z "$GITHUB_ACTIONS" ] && echo "-it") run \
+docker $([ -z "$GITHUB_ACTIONS" ] && echo "-ti") run \
--env-file "$ENVFILE" \
--volume "$WORKDIR:/opt/spark-rm" \
$JAVA_VOL \
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]