在 OS X 中使用 RVM 创建 Ruby 启动任务时出错

在 OS X 中使用 RVM 创建 Ruby 启动任务时出错

我想定期运行基于 ruby​​ gem 的命令。我正在使用 RVM 并遵循以下教程这里

我的 ruby​​ 任务被称为daily_checks.rb,如下所示:

#!/usr/bin/env ruby
puts 'in here'
Dir.chdir('/Users/Chris/Documents/Sites/mentor') do
  audit = `bundle-audit`
  system(%(osascript -e 'display notification "#{audit}" with title "bundle-audit"'))
end

我已经在以下位置设置了 RVM 别名和 bash 文件:/usr/local/bin/regular_checks.sh

/Users/Chris/.rvm/wrappers/regular_checks/ruby /Users/Chris/Documents/Sites/mentor/script/daily_checks.rb

当我运行/usr/local/bin/regular_checks.sh时,ruby 文件被执行并成功运行。

然后我在设置了一个 plist/Users/Chris/Library/LaunchAgents/local.temp.plist

<?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>Disabled</key>
    <false/>
    <key>EnvironmentVariables</key>
    <dict>
        <key>PATH</key>
        <string>/bin:/usr/bin:/usr/local/bin</string>
    </dict>
    <key>Label</key>
    <string>local.temp</string>
    <key>LaunchOnlyOnce</key>
    <false/>
    <key>Program</key>
    <string>/usr/local/bin/regular_checks.sh</string>
    <key>RunAtLoad</key>
    <true/>
    <key>StandardErrorPath</key>
    <string>/tmp/test.stderr</string>
    <key>StandardOutPath</key>
    <string>/tmp/test.stdout</string>
    <key>StartInterval</key>
    <integer>300</integer>
</dict>
</plist>

当我使用 launchControl 运行此作业时,该作业似乎失败,错误编号为 78。rubyputs 'in here'文件中的 未被执行。

文件权限与教程中的相同,即

-rwxr--r--  1 Chris  staff   699 24 Nov 20:16 local.temp.plist
-rwxr-xr-x  1 Chris  admin  111 24 Nov 20:10 /usr/local/bin/regular_checks.sh
-rwxr-xr-x  1 Chris  admin   207 25 Nov 13:38 daily_checks.rb

错误78是什么,为什么文件无法正常运行?

答案1

错误 78 似乎是因为/usr/local/bin/regular_checks.sh文件没有#!/bin/bash第一行。文件的完整内容应该是

#!/bin/bash
/Users/Chris/.rvm/wrappers/regular_checks/ruby /Users/Chris/Documents/Sites/mentor/script/daily_checks.rb

相关内容