File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -39,12 +39,12 @@ CURR_CP_FILE="my-classpath.txt"
3939MASTER_CP_FILE=" master-classpath.txt"
4040
4141# First switch over to the master branch
42- git checkout -f master & > /dev/null
42+ git checkout -f master
4343# Find and copy all pom.xml files into a *.gate file that we can check
4444# against through various `git` changes
4545find -name " pom.xml" -exec cp {} {}.gate \;
4646# Switch back to the current PR
47- git checkout -f " ${current_pr_head} " & > /dev/null
47+ git checkout -f " ${current_pr_head} "
4848
4949# Check if any *.pom files from the current branch are different from the master
5050difference_q=" "
7171 sort > ${CURR_CP_FILE}
7272
7373 # Checkout the master branch to compare against
74- git checkout -f master & > /dev/null
74+ git checkout -f master
7575
7676 ${MVN_BIN} clean package dependency:build-classpath -DskipTests 2> /dev/null | \
7777 sed -n -e ' /Building Spark Project Assembly/,$p' | \
You can’t perform that action at this time.
0 commit comments