From 3cd6f0203b6dadf1cd8435d4ee035735c3d6988c Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Sat, 20 May 2017 19:17:17 +0200 Subject: [PATCH] Rakefile: fix syntax for older Ruby versions --- Rakefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index e58c74b99..738797e5f 100644 --- a/Rakefile +++ b/Rakefile @@ -537,7 +537,9 @@ EOT end desc "Update the Windows installer's translation files" - task :installer { |t| Mtx::Installer.update_all_translation_files } + task :installer do |t| + Mtx::Installer.update_all_translation_files + end end namespace :transifex do