I have a shell script what does a "git clone" and then some operations on the repo cloned. It works fine when run from the command line.
However, if the very same script is added to cron then what happens:
1. Cron starts the script
2. Script invokes git clone
3. git clone spawns several "git-remote-https" processes
4. git returns while the spawned processes run
5. Commands based on the repo fail (if I add a sleep 30 before running the commands then success, but that cannot be the right path)
How do I make sure that a git clone is actually complete when running from cron OR how do I make git run synchronously so that it does not return control to the bash before it is really done (nohup did not work because of the detached spawns)?