From 14e5fb0e76acec214ff070f5c54106f670cdf5d4 Mon Sep 17 00:00:00 2001 From: Mackenzie Clark Date: Wed, 20 Feb 2019 13:58:30 -0800 Subject: [PATCH] move the installer and update appveyor --- .appveyor.yml | 4 ++-- {installer => src/installer}/wasmer.iss | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename {installer => src/installer}/wasmer.iss (100%) diff --git a/.appveyor.yml b/.appveyor.yml index 16432ed6b..e90075bd2 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -27,9 +27,9 @@ test_script: - cd ./lib/spectests && cargo test -- --test-threads 1 && cd ../.. before_deploy: - - cd installer + - cd ./src/installer - iscc wasmer.iss - - copy /y .\WasmerInstaller.exe ..\WasmerInstaller-%APPVEYOR_REPO_TAG_NAME%.exe + - copy /y .\WasmerInstaller.exe ..\..\WasmerInstaller-%APPVEYOR_REPO_TAG_NAME%.exe - appveyor PushArtifact WasmerInstaller-%APPVEYOR_REPO_TAG_NAME%.exe artifacts: diff --git a/installer/wasmer.iss b/src/installer/wasmer.iss similarity index 100% rename from installer/wasmer.iss rename to src/installer/wasmer.iss