From 35f0907c52f43fa1035232d429842177cbab9d06 Mon Sep 17 00:00:00 2001 From: Aminda Suomalainen Date: Wed, 14 Aug 2024 08:26:33 +0300 Subject: [PATCH] install-on-tails.bash: the set flags were swapped? --- install-on-tails.bash | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install-on-tails.bash b/install-on-tails.bash index bc20b7ad..db909671 100755 --- a/install-on-tails.bash +++ b/install-on-tails.bash @@ -2,7 +2,7 @@ # Another take on my install script, but using symlinks and with a chance of # replacing the other ones. -set +x +set -x # Tails appears to come with lsb_release and return Tails export DISTROID="$(lsb_release -si)" @@ -87,5 +87,5 @@ ln -nsfv $SHELL_THINGS_REPO $HOME/.shell-things # Let's go home cd -set -x +set +x # vim: filetype=bash