mirror of
https://github.com/LnL7/nix-darwin.git
synced 2024-12-14 11:57:34 +00:00
add '://' to built flake uri
This commit is contained in:
parent
a1ee4d333b
commit
fad0282b5f
1 changed files with 4 additions and 4 deletions
|
@ -123,13 +123,13 @@ flakeFlags=(--extra-experimental-features 'nix-command flakes')
|
|||
if [ -n "$flake" ]; then
|
||||
# Offical regex from https://www.rfc-editor.org/rfc/rfc3986#appendix-B
|
||||
if [[ "${flake}" =~ ^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))? ]]; then
|
||||
scheme=${BASH_REMATCH[2]}
|
||||
authority=${BASH_REMATCH[4]}
|
||||
path=${BASH_REMATCH[5]}
|
||||
scheme=${BASH_REMATCH[2]} # eg. http
|
||||
authority=${BASH_REMATCH[4]} # eg. www.ics.uci.edu
|
||||
path=${BASH_REMATCH[5]} # eg. /pub/ietf/uri/
|
||||
queryWithQuestion=${BASH_REMATCH[6]}
|
||||
fragment=${BASH_REMATCH[9]}
|
||||
|
||||
flake=${scheme}${authority}${path}${queryWithQuestion}
|
||||
flake=${scheme}://${authority}${path}${queryWithQuestion}
|
||||
flakeAttr=${fragment}
|
||||
fi
|
||||
if [ -z "$flakeAttr" ]; then
|
||||
|
|
Loading…
Reference in a new issue