From 34a8f7957bbcdcfb54f6376a3468aacef3100db8 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Fri, 15 Jun 2018 23:50:15 -0600 Subject: [PATCH] tools: Move appveyor-build script to tools. --- .appveyor.yml | 2 +- .appveyor-build.sh => tools/appveyor-build.sh | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename .appveyor-build.sh => tools/appveyor-build.sh (100%) diff --git a/.appveyor.yml b/.appveyor.yml index 437d1c0a3..69b6d2a87 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -8,7 +8,7 @@ install: - c:\msys64\usr\bin\sh.exe -lc "cygcheck -s -v > $APPVEYOR_BUILD_FOLDER/cygcheck.log 2>&1" - ps: Push-AppveyorArtifact cygcheck.log build_script: - - c:\msys64\usr\bin\sh.exe -lc "cd $APPVEYOR_BUILD_FOLDER; sh .appveyor-build.sh" + - c:\msys64\usr\bin\sh.exe -lc "cd $APPVEYOR_BUILD_FOLDER; sh tools/appveyor-build.sh" # - c:\msys64\usr\bin\sh.exe -lc "cd $APPVEYOR_BUILD_FOLDER/build/bin; ./charybdis -version" on_failure: - ps: Push-AppveyorArtifact config.log diff --git a/.appveyor-build.sh b/tools/appveyor-build.sh similarity index 100% rename from .appveyor-build.sh rename to tools/appveyor-build.sh