mirror of
https://github.com/dolthub/dolt.git
synced 2026-04-22 19:43:51 -05:00
Fixed Andy's PR feedback. Missed a couple bad regexes
This commit is contained in:
+2
-2
@@ -154,7 +154,7 @@ SQL
|
||||
# confirm a difference exists
|
||||
run dolt diff --sql newbranch firstbranch
|
||||
[ "$status" -eq 0 ]
|
||||
[[ ! "$output" =~ "" ]] || false
|
||||
[ ! "$output" = "" ]
|
||||
|
||||
dolt diff --sql newbranch firstbranch > query
|
||||
dolt checkout firstbranch
|
||||
@@ -355,7 +355,7 @@ SQL
|
||||
# confirm a difference exists
|
||||
run dolt diff --sql newbranch firstbranch
|
||||
[ "$status" -eq 0 ]
|
||||
[[ ! "$output" =~ "" ]] || false
|
||||
[ ! "$output" = "" ] || false
|
||||
|
||||
dolt diff --sql newbranch firstbranch > query
|
||||
dolt checkout firstbranch
|
||||
|
||||
Reference in New Issue
Block a user