Skip to content

Instantly share code, notes, and snippets.

@pablopaul
Last active March 1, 2016 16:30
Show Gist options
  • Save pablopaul/c5d34c581eadc3159c80 to your computer and use it in GitHub Desktop.
Save pablopaul/c5d34c581eadc3159c80 to your computer and use it in GitHub Desktop.
desc "Test env"
task :test_env do
on roles(:all) do
puts fetch(:stage) # puts "local"
if fetch(:stage) == 'local'
puts "helo" # does not put "helo", when called as "cap local test_env", why?
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment