Skip to content

Commit

Permalink
Merge pull request #22 from brian-dellabetta/feature/bd/update-julia-…
Browse files Browse the repository at this point in the history
…registry

explicitly update julia registry during online startup
  • Loading branch information
cjdoris authored Mar 15, 2024
2 parents 32c3dfc + fce1242 commit 88283da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/juliapkg/deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ def resolve(force=False, dry_run=False):
# install the packages
dev_pkgs = ', '.join([pkg.jlstr() for pkg in pkgs if pkg.dev])
add_pkgs = ', '.join([pkg.jlstr() for pkg in pkgs if not pkg.dev])
script = ['import Pkg']
script = ['import Pkg', 'Pkg.Registry.update()']
if dev_pkgs:
script.append(f'Pkg.develop([{dev_pkgs}])')
if add_pkgs:
Expand Down

0 comments on commit 88283da

Please sign in to comment.