mirror of
https://github.com/golang/go
synced 2024-11-21 15:04:44 -07:00
dashboard: look for key in $GOROOT before $HOME
TBR=agl1 CC=golang-dev https://golang.org/cl/195076
This commit is contained in:
parent
b81065d07f
commit
c40c974d33
@ -35,10 +35,13 @@ def main(args):
|
||||
buildport = int(os.environ['BUILDPORT'])
|
||||
|
||||
try:
|
||||
buildkey = file('%s/.gobuildkey' % os.environ['HOME'], 'r').read().strip()
|
||||
buildkey = file('%s/.gobuildkey' % os.environ['GOROOT'], 'r').read().strip()
|
||||
except IOError:
|
||||
print >>sys.stderr, "Need key in ~/.gobuildkey"
|
||||
return
|
||||
try:
|
||||
buildkey = file('%s/.gobuildkey' % os.environ['HOME'], 'r').read().strip()
|
||||
except IOError:
|
||||
print >>sys.stderr, "Need key in $GOROOT/.gobuildkey or ~/.gobuildkey"
|
||||
return
|
||||
|
||||
if args[1] == 'init':
|
||||
return doInit(args)
|
||||
|
Loading…
Reference in New Issue
Block a user