-
Notifications
You must be signed in to change notification settings - Fork 215
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
major rewrite to use Gmail API instead of IMAP
- Loading branch information
Showing
48 changed files
with
4,812 additions
and
6,978 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
Empty file.
This file was deleted.
Oops, something went wrong.
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,19 +1,10 @@ | ||
rmdir /q /s gyb | ||
rmdir /q /s gyb-64 | ||
rmdir /q /s build | ||
rmdir /q /s dist | ||
del /q /f gyb-%1-windows.zip | ||
del /q /f gyb-%1-windows-x64.zip | ||
|
||
c:\python27-32\scripts\pyinstaller --distpath=gyb gyb.spec | ||
c:\python3\scripts\pyinstaller --distpath=gyb gyb.spec | ||
xcopy LICENSE gyb\ | ||
xcopy cacert.pem gyb\ | ||
xcopy client_secrets.json gyb\ | ||
del gyb\w9xpopen.exe | ||
"%ProgramFiles(x86)%\7-Zip\7z.exe" a -tzip gyb-%1-windows.zip gyb\ -xr!.svn | ||
|
||
c:\python27\scripts\pyinstaller --distpath=gyb-64 gyb.spec | ||
xcopy LICENSE gyb-64\ | ||
xcopy cacert.pem gyb-64\ | ||
xcopy client_secrets.json gyb-64\ | ||
"%ProgramFiles(x86)%\7-Zip\7z.exe" a -tzip gyb-%1-windows-x64.zip gyb-64\ -xr!.svn | ||
"%ProgramFiles(x86)%\7-Zip\7z.exe" a -tzip gyb-%1-windows.zip gyb\ -xr!.svn |
Oops, something went wrong.