Skip to content

Commit

Permalink
add .exe bin in github
Browse files Browse the repository at this point in the history
  • Loading branch information
Iwan committed Apr 20, 2017
1 parent 4656dff commit d3580df
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Binary file removed .bin/fastreplacestring
Binary file not shown.
Empty file added .bin/fastreplacestring.exe
Empty file.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "fastreplacestring",
"version": "0.0.1",
"description": "Fast C native replacement of a string in a file. Low startup time makes this great for build scripts.",
"version": "0.0.3",
"description": "Fast C(++) native replacement of a string in a file. Low startup time makes this great for build scripts.",
"main": "index.js",
"scripts": {
"postinstall": "g++ -o ./.bin/fastreplacestring.exe ./fastreplacestring.cpp",
"postinstall": "g++ -Ofast -o ./.bin/fastreplacestring.exe ./fastreplacestring.cpp",
"frs": "./.bin/fastreplacestring.exe",
"infer": "infer -- g++ -o ./.bin/fastreplacestring.exe ./fastreplacestring.cpp",
"build": "g++ -o ./.bin/fastreplacestring.exe ./fastreplacestring.cpp",
"infer": "infer -- g++ -g -o ./.bin/fastreplacestring.exe ./fastreplacestring.cpp",
"build": "g++ -Ofast -o ./.bin/fastreplacestring.exe ./fastreplacestring.cpp",
"test": "node ./tests/test.js"
},
"repository": {
Expand Down

0 comments on commit d3580df

Please sign in to comment.