Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.