We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3b1672 commit ca8a908Copy full SHA for ca8a908
scripts/itkdev-docker-compose
@@ -828,8 +828,10 @@ EOF
828
if [ -d $docker_compose_dir/web ]; then
829
root=/app/web
830
fi
831
- if [ -e $docker_compose_dir/vendor/bin/drush ]; then
+ if [ -e $docker_compose_dir/vendor/bin/drush.php ]; then
832
docker_compose exec phpfpm php /app/vendor/bin/drush.php --root=$root "$@"
833
+ elif [ -e $docker_compose_dir/vendor/bin/drush ]; then
834
+ docker_compose exec phpfpm /app/vendor/bin/drush --root=$root "$@"
835
else
836
docker_compose run --rm drush --root=$root "$@"
837
0 commit comments