lib/capistrano/tasks/notifications.rake in capistrano-sumo-1.1.0 vs lib/capistrano/tasks/notifications.rake in capistrano-sumo-1.1.1
- old
+ new
@@ -1,16 +1,16 @@
namespace :sumo do
namespace :notifications do
- desc "Notify our webhooks on a deploy"
+ desc 'Notify our webhooks on a deploy'
task :deploy do
on roles(:web) do
execute :curl,
- "-sS",
+ '-sS',
"--data local_username=#{ENV["USER"]}",
"--data stage=#{fetch(:stage)}",
"--data repo=#{fetch(:repo_url)}",
"--data revision=#{capture("cat #{current_path}/REVISION")}",
- "http://bot.sumo.sumoapp.be:3001/deploy/hook"
+ 'http://bot.sumo.sumoapp.be:3001/deploy/hook'
end
end
end
end
\ No newline at end of file