Skip to content
This repository has been archived by the owner on Jan 18, 2021. It is now read-only.

Commit

Permalink
Add revendor() to make.py script
Browse files Browse the repository at this point in the history
  • Loading branch information
tamalsaha committed Sep 13, 2018
1 parent 0f52a52 commit 89ccb90
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions hack/make.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,13 +175,17 @@ def update_registry():


def install():
die(call('GO15VENDOREXPERIMENT=1 ' + libbuild.GOC + ' install .'))
die(call(libbuild.GOC + ' install .'))


def default():
gen()
fmt()
die(call('GO15VENDOREXPERIMENT=1 ' + libbuild.GOC + ' install .'))
die(call(libbuild.GOC + ' install .'))


def revendor():
libbuild.revendor()


if __name__ == "__main__":
Expand Down

0 comments on commit 89ccb90

Please sign in to comment.