I have a main script that is running other scripts and loading the variables from those scripts using dot sourcing. The script runs fine interactively but when I schedule it to run it does not run the scripts I am dot sourcing. Any ideas?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
I had a similar problem: My dot sourced scripts didn't execute when I ran the main script with run as administrator. It turned out, that the base dir was different, when I ran the script as administrator. Try using the absolute path in your dot sourcing. If it works then, you can work out a better solution, like this:
|
|||
|
|
|
Use absolute paths. Dot sourcing refers to the current directory. This is typically the same directory as your script when you run interactively, but may be another directory when you schedule your script. |
|||
|
|