Skip to content

Commit

Permalink
improvements after shellcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
lyokha committed Sep 18, 2023
1 parent 6d28a48 commit 8934cdf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
NGXVER: ${{ matrix.nginx }}
run: |
set -e
if [ "$NGXVER" == head ]
if [ "$NGXVER" = head ]
then
git clone https://github.com/nginx/nginx.git nginx-head
else
Expand All @@ -36,15 +36,15 @@ jobs:
fi
git clone https://github.com/openresty/echo-nginx-module.git
cd nginx-${NGXVER}/
if [ "$NGXVER" == head ]
if [ "$NGXVER" = head ]
then
NGX_CONFIGURE=./auto/configure
else
NGX_CONFIGURE=./configure
fi
$NGX_CONFIGURE --add-module=.. --add-module=../echo-nginx-module
make -j2
export PATH=$(pwd)/objs:$PATH
export PATH="$(pwd)/objs:$PATH"
cd -
cd test
prove -r t
Expand Down

0 comments on commit 8934cdf

Please sign in to comment.