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/nix
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: ca40fbdc504b
Choose a base ref
...
head repository: NixOS/nix
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 576abaa6503f
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Dec 20, 2017

  1. Fix escaping, fixes build

    FRidh committed Dec 20, 2017
    Copy the full SHA
    af1e2ff View commit details
  2. Merge pull request #1753 from FRidh/fix/escaping

    Fix escaping, fixes build
    edolstra authored Dec 20, 2017

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    576abaa View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 scripts/install-darwin-multi-user.sh
4 changes: 2 additions & 2 deletions scripts/install-darwin-multi-user.sh
Original file line number Diff line number Diff line change
@@ -153,7 +153,7 @@ subheader() {
}

row() {
printf "$BOLD%s$ESC:\t%s\n" "$1" "$2"
printf "$BOLD%s$ESC:\\t%s\\n" "$1" "$2"
}

task() {
@@ -218,7 +218,7 @@ __sudo() {

echo "I am executing:"
echo ""
printf " $ sudo %s\n" "$cmd"
printf " $ sudo %s\\n" "$cmd"
echo ""
echo "$expl"
echo ""