You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the Makefile, we use the php container to create and configure the database.
After some test, it seems that this container fail to interpret the shebang and throw idiot error as ': No such link or directory on Windows.
After some test, we are sure that the problem is that the shebang is not interpreted and we hot fixed it by explicitly executing it with php command.
docker-compose run php php bin/console doctrine:query:sql 'CREATE EXTENSION IF NOT EXISTS postgis' --env=dev
In the Makefile, we use the php container to create and configure the database.
After some test, it seems that this container fail to interpret the shebang and throw idiot error as ': No such link or directory on Windows.
After some test, we are sure that the problem is that the shebang is not interpreted and we hot fixed it by explicitly executing it with php command.
docker-compose run php php bin/console doctrine:query:sql 'CREATE EXTENSION IF NOT EXISTS postgis' --env=dev
Related to coopcycle#388
https://willi.am/blog/2016/08/11/docker-for-windows-dealing-with-windows-line-endings/
https://stackoverflow.com/questions/1967370/git-replacing-lf-with-crlf
The text was updated successfully, but these errors were encountered: