Skip to content

Commit

Permalink
Fix Zephir installer [skip appveyor]
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeyklay committed Oct 6, 2019
1 parent 51ff912 commit 15c9c30
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .ci/install-zephir.sh
Expand Up @@ -32,7 +32,8 @@ then
chmod +x "$HOME/bin/zephir"
else
git clone -b "$ZEPHIR_VERSION" --depth 1 -q https://github.com/phalcon/zephir
cd zephir || exit
composer install "$DEFAULT_COMPOSER_FLAGS"
cd zephir || exit 1
echo "composer install ${DEFAULT_COMPOSER_FLAGS[*]}"
eval "composer install ${DEFAULT_COMPOSER_FLAGS[*]}"
ln -s "$(pwd)/zephir" "$HOME/bin/zephir"
fi
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -82,6 +82,7 @@ before_script:
- 'if [ "$(php-config --vernum)" -ge "70400" ]; then export REPORT_COVERAGE=0; fi'
- .ci/genparsers.sh
- .ci/build.sh
- zephir --version

script:
- vendor/bin/codecept build --quiet
Expand Down

0 comments on commit 15c9c30

Please sign in to comment.