Communities for your favorite technologies. Explore all Collectives
Stack Overflow for Teams is now called Stack Internal. Bring the best of human thought and AI automation together at your work.
Bring the best of human thought and AI automation together at your work. Learn more
Find centralized, trusted content and collaborate around the technologies you use most.
Stack Internal
Knowledge at work
Bring the best of human thought and AI automation together at your work.
I have the following bat file. It exits after module load ria/node.
@echo on SET path =%PATH%; some path SET MODULEPATH=SOME PATH module load ria/node IF %ERRORLEVEL% NEQ 0 ( ECHO ERROR ) npm config set proxy some url
module load ria/node
module load ria /node
Set path
Rather than module load ria/node use the command CALL module load ria/node. Calling programs from a batch file quitter often needs CALL to make the batch file wait for them to exit.
CALL module load ria/node
CALL
Add a comment
npm config set proxy some url
Start asking to get answers
Find the answer to your question by asking.
Explore related questions
See similar questions with these tags.
module load ria/nodetomodule load ria /node. Plus you have extra spaces in the line starting withSet path, remove them.