about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2016-05-30T11·42+0100
committerDomen Kožar <domen@dev.si>2016-05-30T11·42+0100
commitd593625d0594f282ec6a24a8038b886c3fef37ab (patch)
tree387c672b39889055c75eaa083d2db386a8c4a8d9
parent75d2492f20dc513337de3ef2d45e1d5c68c7dff8 (diff)
parent3889415bf8c2f44d8a42824d68e501504b709460 (diff)
Merge pull request #910 from Gabriel439/patch-1
Fix `??` in Nix warning message
-rw-r--r--scripts/install-nix-from-closure.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/install-nix-from-closure.sh b/scripts/install-nix-from-closure.sh
index 509acc41fcbd..95f69cad84bc 100644
--- a/scripts/install-nix-from-closure.sh
+++ b/scripts/install-nix-from-closure.sh
@@ -25,7 +25,7 @@ echo "performing a single-user installation of Nix..." >&2
 
 if ! [ -e $dest ]; then
     cmd="mkdir -m 0755 $dest && chown $USER $dest"
-    echo "directory $dest does not exist; creating it by running ‘$cmd’ using sudo" >&2
+    echo "directory $dest does not exist; creating it by running '$cmd' using sudo" >&2
     if ! sudo sh -c "$cmd"; then
         echo "$0: please manually run ‘$cmd’ as root to create $dest" >&2
         exit 1