Here is my simple batch script:
d:
cd D:/test_folder/test_project
start chrome -incognito http://localhost:19002
code .
expo start
the script only executes up to the code .
line and then gives me a prompt. expo start is never run. What could be the problem? How can I continue the execution after the code .
line?
EDIT:
If I remove the code .
line, the file works as intended.