I have to call some bash scripts on the remote machine after building but it is not possible to “source” bash script in VisualGDB:
- . script1.sh
- script2.sh
- script3.sh
“Sourcing” the script1.sh is necessary because the other scripts need environment variables set/changed by the first script.
Workaround: I created a “runall.sh” which does the lines above.
Not sure if this is by design but caused me hours of error search …