Skip to content
This repository has been archived by the owner on Mar 16, 2023. It is now read-only.

Commit

Permalink
Cleaner builds!
Browse files Browse the repository at this point in the history
  • Loading branch information
octalmage committed Sep 29, 2014
1 parent ec98314 commit 1d89473
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions tests/before_deploy.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
#!/bin/bash

zip -r MarknoteMac.zip build/Marknote/osx/*
zip -r MarknoteWin.zip build/Marknote/win/*
zip -r MarknoteLinux.zip build/Marknote/linux64/*
cd build/Marknote/osx/
zip -r MarknoteMac.zip ./*
cd ../win/
zip -r MarknoteWin.zip ./*
cd ../linux64/
zip -r MarknoteLinux.zip ./*
cd ../../../
mv build/Marknote/osx/MarknoteMac.zip ./
mv build/Marknote/win/MarknoteWin.zip ./
mv build/Marknote/linux64/MarknoteLinux.zip ./

0 comments on commit 1d89473

Please sign in to comment.