We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bd82326 + fe4c477 commit 1500106Copy full SHA for 1500106
tasks/ragel.rake
@@ -43,12 +43,12 @@ namespace :ragel do
43
task :install do
44
next if ENV['CI']
45
46
- if system('command -v ragel')
+ if system('sh -c "command -v ragel"')
47
# already installed
48
- elsif system('command -v brew')
+ elsif system('sh -c "command -v brew"')
49
puts 'ragel not found, installing with homebrew ...'
50
`brew install ragel`
51
- elsif system('command -v apt-get')
+ elsif system('sh -c "command -v apt-get"')
52
puts 'ragel not found, installing with apt-get ...'
53
`sudo apt-get install -y ragel`
54
else
0 commit comments