Using crontab to clone private GitHub repo and run lualatex on Ubuntu

D

Dexx

My distro is Ubuntu 22.04.2 LTS. I am trying to set up a cron job that will clone a private GitHub repo via git every hour, run lualatex, and save the compiled PDF to Google Drive. I have written a script for this purpose:

myscript.sh:

Code:
#!/bin/bash

cd...

Read more.
 

Top