Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[FIXED JENKINS-11714] Fixed the problem in the find command operator …
…priority.

see https://groups.google.com/forum/#!topic/jenkinsci-ja/4FsDhryOwYE

Originally-From: jenkins-ci.org/commit/core/68a7f8e319472e680a8a329f5c9d94362bbbdc02
  • Loading branch information
kohsuke committed Nov 30, 2011
1 parent 8f3833a commit 20cc5e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/postinstall-launchd
Expand Up @@ -6,7 +6,7 @@ JENKINS_PLIST="/Library/LaunchDaemons/org.jenkins-ci.plist"
chown root:wheel ${JENKINS_PLIST}
chmod 644 ${JENKINS_PLIST}
mkdir -p /Users/Shared/Jenkins
find /Users/Shared/Jenkins -not -user daemon -or -not -group daemon -print0 | xargs -0 chown daemon:daemon
find /Users/Shared/Jenkins \( -not -user daemon -or -not -group daemon \) -print0 | xargs -0 chown daemon:daemon

# Load and start the launch daemon
/bin/launchctl load -w ${JENKINS_PLIST}

0 comments on commit 20cc5e1

Please sign in to comment.