diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2019-08-24 19:02:27 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2019-08-24 19:02:27 +0300 |
commit | c157d348291e6213b8a36b5b89fc27f61437db05 (patch) | |
tree | 9953389feeb1eda00537bda38730e23aea7f6972 /.appveyor | |
parent | Travis: build all branches (diff) | |
download | aes-tools-c157d348291e6213b8a36b5b89fc27f61437db05.tar.gz aes-tools-c157d348291e6213b8a36b5b89fc27f61437db05.zip |
AppVeyor: don't preserve Set-PSDebug
Diffstat (limited to '.appveyor')
-rw-r--r-- | .appveyor/build.ps1 | 1 | ||||
-rw-r--r-- | .appveyor/test.ps1 | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/.appveyor/build.ps1 b/.appveyor/build.ps1 index 3016b42..4e9a4c0 100644 --- a/.appveyor/build.ps1 +++ b/.appveyor/build.ps1 @@ -136,6 +136,7 @@ function Build-ProjectAppVeyor { } finally { if (Test-AppVeyor) { cd $appveyor_cwd + Set-PSDebug -Off } } } diff --git a/.appveyor/test.ps1 b/.appveyor/test.ps1 index 6eced27..92212b2 100644 --- a/.appveyor/test.ps1 +++ b/.appveyor/test.ps1 @@ -94,6 +94,7 @@ function Run-ProjectTestsAppVeyor { } finally { if (Test-AppVeyor) { cd $appveyor_cwd + Set-PSDebug -Off } } } |