Skip to content

Commit 9415286

Browse files
committed
old kw syntax
1 parent 0ceb204 commit 9415286

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/register.jl

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,8 @@ function check_and_update_registry_files(pkg::Project, package_repo, tree_hash,
574574
versions_file, versions_data = get_versions_file(package_path)
575575
old_versions = check_versions!(pkg, versions_data, status)
576576
haserror(status) && return
577-
update_versions_file(pkg, versions_file, versions_data, tree_hash; commit_hash, tag_hash, tag_name, subdir)
577+
update_versions_file(pkg, versions_file, versions_data, tree_hash;
578+
commit_hash = commit_hash, tag_hash = tag_hash, tag_name = tag_name, subdir = subdir)
578579

579580
# update package data: deps file
580581
@debug("update package data: deps file")
@@ -676,7 +677,7 @@ function register(
676677
check_and_update_registry_files(pkg, package_repo, tree_hash,
677678
registry_path, registry_deps_paths,
678679
status;
679-
commit_hash, tag_hash, tag_name, subdir)
680+
commit_hash=commit_hash, tag_hash=tag_hash, tag_name=tag_name, subdir=subdir)
680681
haserror(status) && return set_metadata!(regbr, status)
681682

682683
regtreesha = get_registrator_tree_sha()

0 commit comments

Comments
 (0)