I have a Python package which provides a console executable airship
which I would like to run on a regular basis using cron. However, when I add a line to my crontab that should do this, the script never executes. I have a way of telling when my script is being executed (my Steam status shows me as playing a specific game). This is the result of crontab -l
:
*/2 * * * * /usr/bin/env airship
(The 2 is just for testing purposes, ideally it would be 15).
What is stopping this from happening?