Skip to content

Commit

Permalink
Disabled Squirrel by default
Browse files Browse the repository at this point in the history
  • Loading branch information
iDigitalFlame committed Jul 30, 2024
1 parent cca152f commit 247ee02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jetstream/include/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ def _cfg_options(cfg, b):
cfg["gopath"] = ""
cfg["garble"] = True
cfg["compact"] = True
cfg["squirrel"] = True
cfg["squirrel"] = False
return
cfg["upx"] = b.get("upx", False)
cfg["cgo"] = b.get("cgo", False)
Expand All @@ -271,7 +271,7 @@ def _cfg_options(cfg, b):
cfg["gopath"] = b.get("gopath", "")
cfg["garble"] = b.get("garble", True)
cfg["compact"] = b.get("compact", True)
cfg["squirrel"] = b.get("squirrel", True)
cfg["squirrel"] = b.get("squirrel", False)
cfg["tags"] = b.get("tags", _DEFAULT_TAGS)
vet_bool("build.options.upx", cfg["upx"])
vet_bool("build.options.cgo", cfg["cgo"])
Expand Down

0 comments on commit 247ee02

Please sign in to comment.