Question:
I just created my account and for a project, I had to reconfigure the Run button. Before I configured it, I actually got normal results, but after I configured it, I got weird results such as the following : "run = “sh: 1: Use: not found”. How can I restore the Run button to its original function ?
first, just adding an entrypoint variable will not solve the issue because the run variable must also be removed
second, this is not really your fault but OP put the entrypoint variable inside of main.py instead of .replit
so I opted for a whole-file solution
[interpreter] itself didn’t override, it just told the repl how to override in a sense. entrypoint was, well, the actual file to override with. (From how I understand it)