diff options
author | lassulus <lass@blue.r> | 2018-10-08 23:47:23 +0200 |
---|---|---|
committer | lassulus <lass@blue.r> | 2018-10-08 23:47:23 +0200 |
commit | a9997572cf733e9416fc086a7f5a8e41807084b8 (patch) | |
tree | 024d3440f40994ef835eb33a98fe5a3668e0cbe1 | |
parent | 23f82cdd0f6929174a09613176e1a1211fb639c9 (diff) |
update-channel.sh: follow 18.09
-rwxr-xr-x | krebs/update-channel.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/krebs/update-channel.sh b/krebs/update-channel.sh index 47d3f29c4..7f24cd31a 100755 --- a/krebs/update-channel.sh +++ b/krebs/update-channel.sh @@ -3,7 +3,7 @@ dir=$(dirname $0) oldrev=$(cat $dir/nixpkgs.json | jq -r .rev | sed 's/\(.\{7\}\).*/\1/') nix-shell -p nix-prefetch-git --run 'nix-prefetch-git \ --url https://github.com/NixOS/nixpkgs-channels \ - --rev refs/heads/nixos-18.03' \ + --rev refs/heads/nixos-18.09' \ > $dir/nixpkgs.json newrev=$(cat $dir/nixpkgs.json | jq -r .rev | sed 's/\(.\{7\}\).*/\1/') git commit $dir/nixpkgs.json -m "nixpkgs: $oldrev -> $newrev" |