ruby-changes:36781
From: nobu <ko1@a...>
Date: Tue, 16 Dec 2014 14:05:06 +0900 (JST)
Subject: [ruby-changes:36781] nobu:r48862 (trunk): .travis.yml: fix escape
nobu 2014-12-16 14:05:00 +0900 (Tue, 16 Dec 2014) New Revision: 48862 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=48862 Log: .travis.yml: fix escape Modified files: trunk/.travis.yml Index: .travis.yml =================================================================== --- .travis.yml (revision 48861) +++ .travis.yml (revision 48862) @@ -46,7 +46,7 @@ install: "if [[ $TRAVIS_OS_NAME = 'linux https://github.com/ruby/ruby/blob/trunk/.travis.yml#L46 # like test-all, test-rubyspec. This is because they take too much time, # enough for Travis to shut down the VM as being stalled. before_script: - - "if [[ $TRAVIS_OS_NAME = 'osx' ]]; then find ~/Library/Logs/DiagnosticReports -type f -name ruby_\*.crash -delete; fi" + - "if [[ $TRAVIS_OS_NAME = 'osx' ]]; then find ~/Library/Logs/DiagnosticReports -type f -name ruby_\\*.crash -delete; fi" - "uname -a" - "uname -r" - "rm -fr .ext autom4te.cache" -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/