-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Detached verify was broken for messages shorter than 100 bytes
- Loading branch information
Steve Sanders
committed
Feb 2, 2016
1 parent
ad9e594
commit 305748c
Showing
4 changed files
with
28 additions
and
13 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
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
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
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,17 +1,18 @@ | ||
:: Build keybase.exe with prerelease options | ||
cd %GOPATH%\src\github.com\keybase\client\go\keybase | ||
set GOARCH=386 | ||
go generate | ||
for /f %%i in ('winresource.exe -cb') do set KEYBASE_BUILD=%%i | ||
echo %KEYBASE_BUILD% | ||
go build -a -tags "prerelease production" -ldflags="-X github.com/keybase/client/go/libkb.CustomBuild=%KEYBASE_BUILD%" | ||
|
||
:: Then build kbfsdokan | ||
cd %GOPATH%\src\github.com\keybase\kbfs\kbfsdokan | ||
go build -tags "production prerelease" | ||
::cd %GOPATH%\src\github.com\keybase\kbfs\kbfsdokan | ||
::go build -tags "production prerelease" | ||
|
||
Then the desktop: | ||
cd %GOPATH%\src\github.com\keybase\client\react-native\react | ||
npm i | ||
cd %GOPATH%\src\github.com\keybase\client\desktop | ||
npm i | ||
node package.js --arch ia32 --platform win32 | ||
:: Then the desktop: | ||
::cd %GOPATH%\src\github.com\keybase\client\react-native\react | ||
::npm i | ||
::cd %GOPATH%\src\github.com\keybase\client\desktop | ||
::npm i | ||
::node package.js --arch ia32 --platform win32 |