summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2023-05-07 19:19:03 -0400
committerB. Stack <bgstack15@gmail.com>2023-05-07 19:19:03 -0400
commitf5cf23505579d2d9bb9fcc4228eb23a501808e42 (patch)
tree2ce4147c63eeb66883effa6f4208476553c69026
parent112.0.1 rc1 (diff)
downloadlibrewolf-debian-f5cf23505579d2d9bb9fcc4228eb23a501808e42.tar.gz
librewolf-debian-f5cf23505579d2d9bb9fcc4228eb23a501808e42.tar.bz2
librewolf-debian-f5cf23505579d2d9bb9fcc4228eb23a501808e42.zip
add set -x
-rwxr-xr-xscripts/prep-librewolf-dpkg.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/prep-librewolf-dpkg.sh b/scripts/prep-librewolf-dpkg.sh
index 2dcd1e0..9c0815b 100755
--- a/scripts/prep-librewolf-dpkg.sh
+++ b/scripts/prep-librewolf-dpkg.sh
@@ -22,6 +22,7 @@
# Aborts the script upon any failure
set -e;
+set -x;
#####################################
# Load settings
bgstack15