From ccc051457ceefba66c2a62a5cf61fc47ffbc3320 Mon Sep 17 00:00:00 2001 From: Eric Fritz Date: Thu, 10 Oct 2019 14:25:24 -0500 Subject: [PATCH] Update lsif upload-token docs. --- cmd/src/lsif_upload.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/src/lsif_upload.go b/cmd/src/lsif_upload.go index 38b47c2c50..2ab8ee39fa 100644 --- a/cmd/src/lsif_upload.go +++ b/cmd/src/lsif_upload.go @@ -35,7 +35,7 @@ Examples: repoFlag = flagSet.String("repo", "", `The name of the repository. (required)`) commitFlag = flagSet.String("commit", "", `The 40-character hash of the commit. (required)`) fileFlag = flagSet.String("file", "", `The path to the LSIF dump file. (required)`) - uploadTokenFlag = flagSet.String("upload-token", "", `The LSIF upload token for the given repository. (required for Sourcegraph.com only)`) + uploadTokenFlag = flagSet.String("upload-token", "", `The LSIF upload token for the given repository. (required if lsifEnforceAuth setting is enabled)`) apiFlags = newAPIFlags(flagSet) )