We have a shell script named source.sh that exports many ENV variables required for a build.
I am trying to access those ENV variables by running source.sh in my script, but even after running that I am not able to access ENV variables for the succeeding commands.
My Script look alike:
#!/bin/bash
sh source.sh
cd $ROOT_VOS
make
But here cd $ROOT_VOSis not happening