From 8c418dc2c22838f928923a1b16ba9a5714b47773 Mon Sep 17 00:00:00 2001
From: ClementTsang <cjhtsang@uwaterloo.ca>
Date: Mon, 23 Mar 2020 23:02:29 -0400
Subject: [PATCH] Update travis for windows build

---
 .travis.yml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 211759cc..fed4dac1 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -57,13 +57,13 @@ before_deploy:
       rustup target add x86_64-pc-windows-msvc;
       cargo build --release --target x86_64-pc-windows-msvc;
       strip "./target/x86_64-pc-windows-msvc/release/btm";
-      mv "./target/x86_64-pc-windows-msvc/release/btm" "./target/x86_64-pc-windows-msvc/release/btm.exe";
-      zip bottom_x86_64-pc-windows-msvc.zip "./target/x86_64-pc-windows-msvc/release/btm.exe";
+      mv "./target/x86_64-pc-windows-msvc/release/btm" "btm.exe";
+      zip bottom_x86_64-pc-windows-msvc.zip "btm.exe";
       rustup target add i686-pc-windows-msvc;
       cargo build --release --target i686-pc-windows-msvc;
       strip "./target/i686-pc-windows-msvc/release/btm";
-      mv "./target/i686-pc-windows-msvc/release/btm" "./target/i686-pc-windows-msvc/release/btm.exe";
-      zip bottom_i686-pc-windows-msvc.zip "./target/i686-pc-windows-msvc/release/btm.exe";
+      mv "./target/i686-pc-windows-msvc/release/btm" "btm.exe";
+      zip bottom_i686-pc-windows-msvc.zip "btm.exe";
     else
         cargo build --release;
         cp ./target/release/btm btm;