Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixos-channel-scripts
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 91f79b69a3a1
Choose a base ref
...
head repository: NixOS/nixos-channel-scripts
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a04700b949c4
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 30, 2020

  1. Copy the full SHA
    7514095 View commit details
  2. Merge pull request #25 from worldofpeace/plasma5-rename

    rename iso_graphical to iso_plasma5
    edolstra authored Jan 30, 2020
    Copy the full SHA
    a04700b View commit details
Showing with 8 additions and 2 deletions.
  1. +8 −2 mirror-nixos-branch.pl
10 changes: 8 additions & 2 deletions mirror-nixos-branch.pl
Original file line number Diff line number Diff line change
@@ -139,8 +139,14 @@ sub fetch {

if ($channelName !~ /-small/) {
downloadFile("nixos.iso_minimal.i686-linux");
downloadFile("nixos.iso_graphical.x86_64-linux");
#downloadFile("nixos.iso_graphical.i686-linux");

# Renamed iso_graphcial to iso_plasma5 in 20.03
if ($releaseName !~ /-19./) {
downloadFile("nixos.iso_plasma5.x86_64-linux");
} else {
downloadFile("nixos.iso_graphical.x86_64-linux");
}

downloadFile("nixos.ova.x86_64-linux");
#downloadFile("nixos.ova.i686-linux");
}