I have the following plist in my LaunchAgents directory:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>KeepAlive</key>
<false/>
<key>Label</key>
<string>com.dejay.program</string>
<key>Program</key>
<string>/usr/local/bin/program</string>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>
The plist launches successfully and appears in launchctl list. However, program does not seem to do its job. Running /usr/local/bin/program from the command line works fine, though. I have other plists that run their scripts successfully. The only difference with program is that it writes files. Is this an issue? The files are written to a path that contains Time attributes, variables, and ENV['USER']; the path is "absolute." How can I fix this?
Thanks for your help!