This repository was archived by the owner on Apr 26, 2024. It is now read-only.
5.5.15
- MARKERS can now be escaped where they conflict with sources (rare). This didn't require any new code,
we just pass some extra arguments tofnr
. See: 83c88b4
Example:
# Literal source (RELEASE conflicts with package manager)
https://github.com/jedisct1/libsodium/releases/download/1.0.18-RELEASE/libsodium-1.0.18.tar.gz
# Solution (escaping RELEASE)
https://github.com/jedisct1/libsodium/releases/download/1.0.18-\RELEASE/libsodium-1.0.18.tar.gz
# Still works with regular MARKERS
https://github.com/jedisct1/libsodium/releases/download/VERSION-\RELEASE/libsodium-VERSION.tar.gz
# This also works (escaping single marker, substituting others).
https://example.com/download/RELEASE-\RELEASE/libsodium-RELEASE.tar.gz