Skip to content

Commit

Permalink
fix(CreateSiblingRia): canonify push-url correctly
Browse files Browse the repository at this point in the history
This patch foxes a bug where the canonified ria-store
URL was assigned to `push_url` instead of the
canonified ria-store push-URL.
  • Loading branch information
christian-monch committed Jul 16, 2024
1 parent e582c27 commit a89a55a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datalad_next/patches/replace_create_sibling_ria.py
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ def __call__(url,
# be different for subdatasets.
# PATCH: use canonified representation of `url` and `push_url`
url = canonify_url(url)
push_url = canonify_url(url)
push_url = canonify_url(push_url)

try:
ssh_host, url_base_path_str, rewritten_url = \
Expand Down

0 comments on commit a89a55a

Please sign in to comment.