File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -41,15 +41,15 @@ TMP_DIR=$(mktemp -d)
4141curl -sfSL " https://$SUBDOMAIN .docker.com" -o " $TMP_DIR /install.sh"
4242
4343echo " # Diff $CHANNEL install.sh"
44- if ! diff --color=always - u " $TMP_DIR /install.sh" " build/$CHANNEL /install.sh" ; then
44+ if ! diff -u " $TMP_DIR /install.sh" " build/$CHANNEL /install.sh" ; then
4545 DIFF_FOUND=1
4646fi
4747
4848# For stable channel, also compare rootless-install.sh
4949if [[ " $CHANNEL " == " stable" ]]; then
5050 curl -sfSL " https://$SUBDOMAIN .docker.com/rootless" -o " $TMP_DIR /rootless-install.sh"
5151 echo " # Diff $CHANNEL rootless-install.sh"
52- if ! diff --color=always - u " $TMP_DIR /rootless-install.sh" " build/$CHANNEL /rootless-install.sh" ; then
52+ if ! diff -u " $TMP_DIR /rootless-install.sh" " build/$CHANNEL /rootless-install.sh" ; then
5353 DIFF_FOUND=1
5454 fi
5555fi
You can’t perform that action at this time.
0 commit comments