From 13680704eafeb2e171d6b63de8faa55fd867183d Mon Sep 17 00:00:00 2001 From: Zeex Date: Sat, 28 Mar 2015 19:28:51 +0600 Subject: [PATCH] Fix path to artifacts in AppVeyor config --- appveyor.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 99b7d32..01ec2c8 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,7 +1,7 @@ version: '{build}' configuration: - - Release + - RelWithDebInfo before_build: - cmake source/compiler @@ -10,8 +10,8 @@ build_script: - cmake --build . --config %CONFIGURATION% artifacts: - - path: pawncc.exe + - path: RelWithDebInfo/pawncc.exe name: Compiler executable - - path: pawnc.dll + - path: RelWithDebInfo/pawnc.dll name: Compiler library