Commit 64b9d84b authored by Richard Levitte's avatar Richard Levitte
Browse files

When grepping something starting with a dash, remember to use -e

parent 2b8fa1d5
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -60,7 +60,7 @@ matrix:
before_script:
    - sh .travis-create-release.sh $TRAVIS_OS_NAME
    - tar -xvzf _srcdist.tar.gz
    - if echo "$CONFIG_OPTS" | grep "--classic" >/dev/null; then
    - if echo "$CONFIG_OPTS" | grep -e "--classic" >/dev/null; then
          srcdir=.;
          cd _srcdist;
      else
@@ -83,7 +83,7 @@ before_script:
    - cd ..

script:
    - if echo "$CONFIG_OPTS" | grep "--classic" >/dev/null; then
    - if echo "$CONFIG_OPTS" | grep -e "--classic" >/dev/null; then
          cd _srcdist;
      else
          cd _build;