https://github.com/wwood/bbbin
Raw File
Tip revision: b98a60ba36ad03c4dafc984b9b17ac2a318b5fe0 authored by Ben Woodcroft on 18 March 2024, 05:59:38 UTC
rust: Adjust for strange case.
Tip revision: b98a60b
rq_env.rb
#!/usr/bin/ruby
#require 'gem'
#require 'rio'

# A Wrapper around RQ so it stops making those annoying errors:
# "ENV['HOME'] is unset!"
# Only do so where there is no home, so normal users can use a different thing.
command = "rq #{ARGV.join(' ')}"
if !ENV['HOME']
  command = "export PATH=$PATH:/usr/local/bin; export HOME='/var/www'; #{command}"
end
system(command)
back to top