Improve flags in bazel example (#917)

This commit is contained in:
Kevin Lubick 2021-10-24 12:22:52 -04:00 коммит произвёл GitHub
Родитель 1c420fd6e5
Коммит 85d27a4a2a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -16,11 +16,11 @@ BASE_LINKOPTS = [
]
RELEASE_OPTS = [
"--closure 1", # Run the closure compiler
"--closure=1", # Run the closure compiler
]
DEBUG_OPTS = [
"--closure 0", # Do not use closure
"--closure=0", # Do not use closure
]
config_setting(