From 76b278e35b1cb9c34bb38edfe51428df68bb103b Mon Sep 17 00:00:00 2001 From: TrudeEH Date: Wed, 9 Oct 2024 22:39:47 +0100 Subject: [PATCH] Cleanup echo --- install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install.sh b/install.sh index ebecc86d..d2fb5175 100755 --- a/install.sh +++ b/install.sh @@ -9,11 +9,11 @@ if [ $(pwd) != "$HOME/dotfiles" ]; then fi if ! nix --version &>/dev/null; then - echo -e "[E] Nix not found." - echo -e "[+] Installing the Nix package manager..." + echo "[E] Nix not found." + echo "[+] Installing the Nix package manager..." sh <(curl -L https://nixos.org/nix/install) . /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh - echo -e "[I] Installed Nix." + echo "[I] Installed Nix." fi E='echo -e'