This repository has been archived by the owner on Nov 12, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Zhongyi Tong
committed
Apr 21, 2016
1 parent
a7b8d72
commit a115341
Showing
1 changed file
with
7 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,17 @@ | ||
#!/bin/bash | ||
|
||
cd dist | ||
|
||
echo 'Start compressing for Mac OS X.' | ||
tar zcf 'dist/mac-osx.tar.gz' 'dist/Electronic WeChat-darwin-x64' | ||
tar zcf 'mac-osx.tar.gz' 'Electronic WeChat-darwin-x64' | ||
echo 'Compressing for Mac OS X succeed.' | ||
|
||
echo 'Start compressing for Linux x64.' | ||
tar zcf 'dist/linux-x64.tar.gz' 'dist/Electronic WeChat-linux-x64' | ||
tar zcf 'linux-x64.tar.gz' 'electronic-wechat-linux-x64' | ||
echo 'Compressing for Linux x64 succeed.' | ||
|
||
echo 'Start compressing for Linux ia32.' | ||
tar zcf 'dist/linux-ia32.tar.gz' 'dist/Electronic WeChat-linux-ia32' | ||
tar zcf 'linux-ia32.tar.gz' 'electronic-wechat-linux-ia32' | ||
echo 'Compressing for Linux ia32 succeed.' | ||
|
||
cd .. |