Skip to content

Commit 83e57b0

Browse files
committed
[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 #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 <gurwls223@apache.org> Signed-off-by: Hyukjin Kwon <gurwls223@apache.org>
1 parent 8f699a4 commit 83e57b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dev/create-release/do-release-docker.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ if [ -n "$JAVA" ]; then
163163
fi
164164

165165
echo "Building $RELEASE_TAG; output will be at $WORKDIR/output"
166-
docker $([ -z "$GITHUB_ACTIONS" ] && echo "-it") run \
166+
docker $([ -z "$GITHUB_ACTIONS" ] && echo "-ti") run \
167167
--env-file "$ENVFILE" \
168168
--volume "$WORKDIR:/opt/spark-rm" \
169169
$JAVA_VOL \

0 commit comments

Comments
 (0)