From 9b3f1386a15b550b94fee8d6453ee83ef20225bc Mon Sep 17 00:00:00 2001 From: John Mettraux Date: Tue, 22 May 2018 21:54:09 +0900 Subject: [PATCH] Simplify .appveyor.yml tzutil setting, gh-12 --- .appveyor.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 0957a62..faafb8e 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -4,10 +4,6 @@ version: "{build}-{branch}" environment: matrix: - - RUBY_VERSION: 193 - TZONE: "" - - RUBY_VERSION: 24 - TZONE: "" - RUBY_VERSION: 193 TZONE: "UTC" - RUBY_VERSION: 24 @@ -24,8 +20,7 @@ environment: install: - echo %RUBY_VERSION% - echo %TZONE% - #- if [ "%TZONE%" -ne "" ]; then tzutil /s "%TZONE%"; fi - - ps: if ($env:TZONE -ne "") { tzutil /s "$env:TZONE" } + - tzutil /s "%TZONE%" - set PATH=C:\Ruby%RUBY_VERSION%\bin;%PATH% - cp Gemfile.appveyor Gemfile - bundle install