Skip to content

Commit

Permalink
devtools: fix bash-isms in meson test
Browse files Browse the repository at this point in the history
The use of "==" is non-standard extension from bash, so use "="
for comparisons instead.

Cc: [email protected]

Signed-off-by: Bruce Richardson <[email protected]>
Acked-by: Luca Boccassi <[email protected]>
  • Loading branch information
bruce-richardson authored and tmonjalo committed Apr 17, 2019
1 parent 2660c6f commit c039a73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions devtools/test-meson-builds.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ build () # <directory> <meson options>
fi
}

if [ "$1" == "-vv" ] ; then
if [ "$1" = "-vv" ] ; then
TEST_MESON_BUILD_VERY_VERBOSE=1
elif [ "$1" == "-v" ] ; then
elif [ "$1" = "-v" ] ; then
TEST_MESON_BUILD_VERBOSE=1
fi

Expand Down

0 comments on commit c039a73

Please sign in to comment.