зеркало из https://github.com/microsoft/spinnaker.git
Merge pull request #1440 from dsimonto/bugfix/run-script-updates
Make the update_run_scripts in refresh_source.py default to True.
This commit is contained in:
Коммит
59040db34c
|
@ -538,9 +538,13 @@ bash -c "(npm start >> '$LOG_DIR/{name}.log') 2>&1\
|
|||
help='Pull from this github user\'s repositories.'
|
||||
' If the user is "default" then use the'
|
||||
' authoritative (upstream) repository.')
|
||||
parser.add_argument('--update_run_scripts', default=False,
|
||||
|
||||
parser.add_argument('--update_run_scripts', default=True,
|
||||
action='store_true',
|
||||
help='Update the run script for each component.')
|
||||
parser.add_argument('--noupdate_run_scripts',
|
||||
dest='update_run_scripts',
|
||||
action='store_false')
|
||||
|
||||
@classmethod
|
||||
def main(cls):
|
||||
|
|
Загрузка…
Ссылка в новой задаче