Skip to content

Commit

Permalink
Adding the -U flag for the install.
Browse files Browse the repository at this point in the history
  • Loading branch information
Zoramite committed Jun 22, 2017
1 parent 90e5e0e commit 91ad1cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grow/common/sdk_utils.py
Expand Up @@ -251,7 +251,7 @@ def install_extensions(pod):
pod.logger.error('[✘] The "pip" command was not found.')
return
pod.logger.info('[✓] "pip" is installed.')
pip_command = 'pip install -t {} -r extensions.txt'.format(EXTENSIONS_DIR_NAME)
pip_command = 'pip install -U -t {} -r extensions.txt'.format(EXTENSIONS_DIR_NAME)
process = subprocess.Popen(pip_command, shell=True, **args)
code = process.wait()
if not code:
Expand Down

0 comments on commit 91ad1cf

Please sign in to comment.