I have tried creating an application in Automator that when double clicked, will tar my To-Do.txt file. The command I'm using is pretty standard:
tar -cvzf ToDo.tar.gz /Users/myusername/Desktop/To-Do.txt
The above command works perfectly when entered into a terminal, so I created an application in Automator and put the 'Run Shell Script' action into the workflow with the command above. However, when I double click the application it does nothing at all.
If I run the workflow in automator, it runs successfully so I know there are no errors.
Can anyone tell me why this isn't working?