Skip to content

Commit

Permalink
rename fbk into fio
Browse files Browse the repository at this point in the history
  • Loading branch information
ellis2323 committed Feb 5, 2018
1 parent eac11ff commit f1a10c8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from subprocess import call

PLATFORMS = ["windows/amd64", "windows/386", "darwin/amd64", "linux/amd64", "linux/386"]
VERSION = "0.1.1"
VERSION = "0.1.2"

if __name__ == "__main__":
if not os.path.exists("build"):
Expand All @@ -22,9 +22,9 @@
els = p.split('/')
eos = els[0]
arch = els[1]
archive = "fbk-%s-%s-%s.tar.gz" % (eos, arch, VERSION)
cmdBuild = "GOOS=%s GOARCH=%s go build -o build/%s github.com/fireblock/go-fireblock" % (eos, arch, "fbk")
cmdArch = "tar zcvf dist/%s build/%s build/LICENSE" % (archive, "fbk")
archive = "fio-%s-%s-%s.tar.gz" % (eos, arch, VERSION)
cmdBuild = "GOOS=%s GOARCH=%s go build -o build/%s github.com/fireblock/go-fireblock" % (eos, arch, "fio")
cmdArch = "tar zcvf dist/%s build/%s build/LICENSE" % (archive, "fio")
call(cmdBuild, shell=True)
call(cmdArch, shell=True)

0 comments on commit f1a10c8

Please sign in to comment.