summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOleg Pudeyev <p@users.noreply.github.com>2018-06-02 00:57:05 -0400
committerGitHub <noreply@github.com>2018-06-02 00:57:05 -0400
commit2b4b206951595ccd19a8c1b4cdd54af166a00719 (patch)
treefd9ca4bf5b3ba5a3bbafed385870e3e7664882e6
parent4d77afca2deb2d420defcf9d1a70cc24a32c34f0 (diff)
parent5b1eb0d6ce45246889e620f96376010002d5ea8f (diff)
downloadpycurl-2b4b206951595ccd19a8c1b4cdd54af166a00719.tar.gz
Merge pull request #525 from p-push/dot-appveyor
Try to rename appveyor to .appveyor to get it out of the way
-rw-r--r--.appveyor/install.ps1 (renamed from appveyor/install.ps1)0
-rw-r--r--.appveyor/run_with_env.cmd (renamed from appveyor/run_with_env.cmd)0
-rw-r--r--appveyor.yml4
3 files changed, 2 insertions, 2 deletions
diff --git a/appveyor/install.ps1 b/.appveyor/install.ps1
index 160ba55..160ba55 100644
--- a/appveyor/install.ps1
+++ b/.appveyor/install.ps1
diff --git a/appveyor/run_with_env.cmd b/.appveyor/run_with_env.cmd
index 9e2bc85..9e2bc85 100644
--- a/appveyor/run_with_env.cmd
+++ b/.appveyor/run_with_env.cmd
diff --git a/appveyor.yml b/appveyor.yml
index 2bf8570..7c120e7 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -3,7 +3,7 @@ environment:
# SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the
# /E:ON and /V:ON options are not enabled in the batch script intepreter
# See: http://stackoverflow.com/a/13751649/163740
- CMD_IN_ENV: "cmd /E:ON /V:ON /C .\\appveyor\\run_with_env.cmd"
+ CMD_IN_ENV: "cmd /E:ON /V:ON /C .\\.appveyor\\run_with_env.cmd"
matrix:
@@ -52,7 +52,7 @@ install:
# Install Python (from the official .msi of http://python.org) and pip when
# not already installed.
- - ps: if (-not(Test-Path($env:PYTHON))) { & appveyor\install.ps1 }
+ - ps: if (-not(Test-Path($env:PYTHON))) { & .appveyor\install.ps1 }
# Prepend newly installed Python to the PATH of this build (this cannot be
# done from inside the powershell script as it would require to restart