I am trying to create automatic running scripts for developers on Windows(execute one command ./update instead running 5-6 commands in different folders)
CLI is Powershell (Windows Terminal on Windows 10 Pro)
Example command for linux that works on linux machine:
cd $PWD/angular && npm install
cd $PWD/angular && ng build
cd $PWD/react && npm install
cd $PWD/react && ng build
Example command for Windows that wont work:
cd $PWD/angular && npm install
cd $PWD/angular | npm install
cd angular && npm install
Getting an error "The system cannot find the path specified."
Please don't recommend me use WSL2 and other due to this is not my resolving.