Stuggling to get WCA on rails to run #9418
Answered
by
gregorbg
elfishhenry
asked this question in
Q&A
-
|
Beta Was this translation helpful? Give feedback.
Answered by
gregorbg
Jun 17, 2024
Replies: 1 comment 1 reply
-
Hey, sorry for the late reply. We are not used to handling support inquiries via this "GitHub Discussions" feature. The screenshot looks like you have downloaded the code to a Windows machine, but are trying to run inside a Unix Docker host. The |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To resolve this issue, you need to consider your own development environment (which OS are you using to download the code from GitHub, where is it stored, which OS runner is being used to exec Docker?) and look into line ending conversions when doing
git clone
.ChatGPT can also help a lot with these kinds of "classical" problems. Prompts like "I am working on a Windows machine and have downloaded code from GitHub. There is a Docker enviroment which uses a Unix-based container in a Docker Compose setup, and the command defined in
docker-compose.yml
throws an error because of mis-converted line-breaks. How to fix this issue?" can help.