chore: make shellcheck happy in releases_nixos() (#1295)
This commit is contained in:
parent
56ec3c9e47
commit
2c6a050643
5
quickget
5
quickget
|
@ -906,8 +906,9 @@ function releases_nitrux() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function releases_nixos() {
|
function releases_nixos() {
|
||||||
# unstable plus the two most recent releases
|
# Lists unstable plus the two most recent releases
|
||||||
echo unstable $(web_pipe https://nix-channels.s3.amazonaws.com/?delimiter=/ | grep -o -P '(?<=<Key>nixos-)[0-9]+.[0-9]+(?=</Key>)' | sort -nr | head -n +2)
|
#shellcheck disable=SC2046
|
||||||
|
echo unstable $(web_pipe "https://nix-channels.s3.amazonaws.com/?delimiter=/" | grep -o -P '(?<=<Key>nixos-)[0-9]+.[0-9]+(?=</Key>)' | sort -nr | head -n +2)
|
||||||
}
|
}
|
||||||
|
|
||||||
function editions_nixos() {
|
function editions_nixos() {
|
||||||
|
|
Loading…
Reference in New Issue