Skip to content

Commit

Permalink
fix: url bug
Browse files Browse the repository at this point in the history
  • Loading branch information
henilp105 committed May 5, 2024
1 parent f4a8844 commit 06e8137
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fpm/dependency.f90
Original file line number Diff line number Diff line change
Expand Up @@ -717,7 +717,7 @@ subroutine get_from_registry(self, target_dir, global_settings, error, downloade
end if

! Include namespace and package name in the target url and download package data.
target_url = global_settings%registry_settings%url//'packages/'//self%namespace//'/'//self%name
target_url = global_settings%registry_settings%url//'/packages/'//self%namespace//'/'//self%name
call downloader%get_pkg_data(target_url, self%requested_version, tmp_file, json, error)
close (unit, status='delete')
if (allocated(error)) return
Expand Down

0 comments on commit 06e8137

Please sign in to comment.