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:
Eric Wiseblatt 2017-02-24 15:07:33 -05:00 коммит произвёл GitHub
Родитель 66d0952f09 0de8b86824
Коммит 59040db34c
1 изменённых файлов: 5 добавлений и 1 удалений

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

@ -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):