From a1b7ac9674ff9f94dab008ba6dfa3bfd1590819e Mon Sep 17 00:00:00 2001 From: Pagran <67878280+pagran@users.noreply.github.com> Date: Mon, 21 Sep 2020 23:46:45 +0300 Subject: [PATCH] Add windows support --- testdata/scripts/goversion.txt | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/testdata/scripts/goversion.txt b/testdata/scripts/goversion.txt index cf8cf91..46964c3 100644 --- a/testdata/scripts/goversion.txt +++ b/testdata/scripts/goversion.txt @@ -1,6 +1,5 @@ -[!exec:sh] skip - -cp go .bin/go +cp go.sh .bin/go +cp go.bat .bin/go.bat chmod 777 .bin/go # Check incorrect go install @@ -42,7 +41,11 @@ env GO_VERSION='go version go1.15.2 windows/amd64' -- main.go -- package main --- go -- +-- go.sh -- #!/bin/sh [ -z "$GO_VERSION" ] && exit 1 || echo "$GO_VERSION" + +-- go.bat -- +@echo off +IF DEFINED GO_VERSION (echo %GO_VERSION%) ELSE (exit 1)