diff options
author | lassulus <lassulus@lassul.us> | 2019-03-06 16:38:28 +0100 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2019-04-08 17:20:26 +0200 |
commit | 64c8c06f02d6ea59484d94354a574b3a9f5810cd (patch) | |
tree | bb203633e7e7a1be520c4a53e1dd845f61012f8e | |
parent | 7e1b197dab13d024ba491c96dc959306324943c0 (diff) |
18.09 -> 19.03
-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 7f24cd31a..08354357a 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.09' \ + --rev refs/heads/nixos-19.03' \ > $dir/nixpkgs.json newrev=$(cat $dir/nixpkgs.json | jq -r .rev | sed 's/\(.\{7\}\).*/\1/') git commit $dir/nixpkgs.json -m "nixpkgs: $oldrev -> $newrev" |