From 531c7defe7856ab78c8541195bc1b627734e6b6c Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Sun, 22 May 2016 19:18:38 -0400 Subject: [PATCH] Trying xcopy instead of move --- appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index f32e013..87a3209 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -10,8 +10,8 @@ install: - set PATH=%GOPATH%\bin;c:\go\bin;%PATH% - set NEW_BUILD_DIR_DEST=c:\gopath\src\github.com\urfave - mkdir %NEW_BUILD_DIR_DEST% - - move %APPVEYOR_BUILD_FOLDER% %NEW_BUILD_DIR_DEST% - - set APPVEYOR_BUILD_FOLDER=%NEW_BUILD_DIR%\cli + - xcopy /s %APPVEYOR_BUILD_FOLDER% %NEW_BUILD_DIR_DEST%\cli + - set APPVEYOR_BUILD_FOLDER=%NEW_BUILD_DIR_DEST%\cli - go version - go env - go get github.com/urfave/gfmxr/...