We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 800910c commit d3cdea7Copy full SHA for d3cdea7
scripts/assert-changed-files.sh
@@ -14,6 +14,12 @@ if [ "$IS_CI" = true ]; then
14
if [ $? -ne 0 ]; then
15
echo "Branch has conflicts with master, rolling back test."
16
git merge --abort
17
+
18
+ if [ $? -ne 0]; then
19
+ # seems like we can't abort merge - script doesn't really handle that, we should fail this step because something is wonky
20
+ echo "Something went wrong, we could not abort our merge command. Please re-run the test."
21
+ exit 1
22
+ fi
23
fi
24
25
git config --local --unset user.name
0 commit comments