Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enter custom path to the config file via command line #945

Open
wants to merge 19 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix: url bug
  • Loading branch information
henilp105 committed May 5, 2024
commit 06e813716e4b9e13cb67966c9ca7fcc0580d6adc
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
Loading