I am building a bash script and want to call the setDomainEnv.sh inside the script but getting the error as
"No such file or directory"
. Inside my script I have something like:
#!/bin/bash
. ./path/bin/setDomainEnv.sh
Do you have an idea how can I call the setDomainEnv.sh?
Thanks