Skip to content

Commit

Permalink
Update also submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
mlouhivu committed Jun 10, 2022
1 parent de5ac6d commit 300b0c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup/update.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def run():
print('')

# update repository
cmd = 'git pull'
cmd = 'git pull && git submodule update --init'
if args.verbose:
print('Updating repository...')
print(' ' + cmd)
Expand All @@ -101,7 +101,7 @@ def run():
print('Unable to unpack container: {0}'.format(install_sif))
# update the git repo
path = os.path.join(sandbox, 'slidefactory')
cmd = 'git pull'
cmd = 'git pull && git submodule update --init'
if args.verbose:
print('Updating repository (in container)...')
print(' ' + cmd)
Expand Down

0 comments on commit 300b0c8

Please sign in to comment.