Skip to content

Commit 653e5fe

Browse files
authored
HBASE-29187 Use double quote instead of single quote in Jenkinsfile scripts when there are env vars (#6817)
Signed-off-by: Duo Zhang <[email protected]>
1 parent 55ec57e commit 653e5fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dev-support/Jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -825,9 +825,9 @@ pipeline {
825825
set -e
826826
declare -i status=0
827827
if "${BASEDIR}/dev-support/hbase_nightly_yetus.sh" ; then
828-
echo '(/) {color:green}+1 jdk17 hadoop ${HADOOP_THREE_VERSION} backward compatibility checks{color}' > "${OUTPUT_DIR}/commentfile"
828+
echo "(/) {color:green}+1 jdk17 hadoop ${HADOOP_THREE_VERSION} backward compatibility checks{color}" > "${OUTPUT_DIR}/commentfile"
829829
else
830-
echo '(x) {color:red}-1 jdk17 hadoop ${HADOOP_THREE_VERSION} backward compatibility checks{color}' > "${OUTPUT_DIR}/commentfile"
830+
echo "(x) {color:red}-1 jdk17 hadoop ${HADOOP_THREE_VERSION} backward compatibility checks{color}" > "${OUTPUT_DIR}/commentfile"
831831
status=1
832832
fi
833833
echo "-- For more information [see jdk17 report|${BUILD_URL}JDK17_20Nightly_20Build_20Report_20_28Hadoop3_29/]" >> "${OUTPUT_DIR}/commentfile"

0 commit comments

Comments
 (0)