You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by do...@apache.org on 2017/04/02 23:51:30 UTC

[5/7] buildr git commit: Prefer single quotes

Prefer single quotes


Project: http://git-wip-us.apache.org/repos/asf/buildr/repo
Commit: http://git-wip-us.apache.org/repos/asf/buildr/commit/efdbd389
Tree: http://git-wip-us.apache.org/repos/asf/buildr/tree/efdbd389
Diff: http://git-wip-us.apache.org/repos/asf/buildr/diff/efdbd389

Branch: refs/heads/master
Commit: efdbd389751b5993bb9cf5ef1e9a3c8e26929c07
Parents: 308754e
Author: Peter Donald <pe...@realityforge.org>
Authored: Mon Apr 3 09:17:09 2017 +1000
Committer: Peter Donald <pe...@realityforge.org>
Committed: Mon Apr 3 09:17:09 2017 +1000

----------------------------------------------------------------------
 rakelib/stage.rake | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/buildr/blob/efdbd389/rakelib/stage.rake
----------------------------------------------------------------------
diff --git a/rakelib/stage.rake b/rakelib/stage.rake
index f5f541f..c2009db 100644
--- a/rakelib/stage.rake
+++ b/rakelib/stage.rake
@@ -87,8 +87,8 @@ task 'prepare' do |task, args|
     puts '[X] We have prince available'
   end.call
 
-  raise "Can not run stage process under jruby" if RUBY_PLATFORM[/java/]
-  raise "Can not run staging process under older rubies" unless RUBY_VERSION >= '1.9'
+  raise 'Can not run stage process under jruby' if RUBY_PLATFORM[/java/]
+  raise 'Can not run staging process under older rubies' unless RUBY_VERSION >= '1.9'
 end
 
 task 'stage' => %w(clobber prepare) do |task, args|