home · contact · privacy
Fix.
authorChristian Heller <c.heller@plomlompom.de>
Thu, 3 Apr 2025 08:52:12 +0000 (10:52 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Thu, 3 Apr 2025 08:52:12 +0000 (10:52 +0200)
bookworm/scripts/lib/copy_dirtree
bookworm/scripts/lib/setup_users
testing/home/desktop/.local/bin/borgplom

index 12e51c96b9a358b1dda342614172fd05bde253ae..438f4bd1520f78b2dff5ffb72b8860ce1de0c7b9 100644 (file)
@@ -17,6 +17,6 @@ copy_dirtree() {
             mkdir -p "${DIRECTORY}"
             cp -a "${PATH_SOURCE}" "${PATH_TARGET}"
         done
-        cd -
+        cd - > /dev/null
     done
 }
index 98b6ab4cfb863ceaf7d52a9ae8d27018bede4cb4..cc095673e1f1eb1afe7d1460d8294b8c037e4fe5 100644 (file)
@@ -17,6 +17,6 @@ setup_users() {
     mkdir -p "${PATH_USER_BIN}"
     cd "${PATH_USER_BIN}"
     ln -s ../../.plomlib.sh lib
-    cd -
+    cd - > /dev/null
     chown -R "${USERNAME}:${USERNAME}" "${PATH_USER_HOME}"
 }
index dd6a40b7732d62089d3e93bbb58d59c3f71effe9..aa7b6ac4b2bfd8047eef8f3211002c1be22330bf 100755 (executable)
@@ -4,7 +4,7 @@ cd $(dirname "$0")
 . lib/constants_borg  # PATH_BORG_CONF
 . lib/get_passphrase
 . lib/path_tmp_timestamped
-cd -
+cd - > /dev/null
 
 BIN_NAME="$(basename $0)"
 
@@ -42,15 +42,13 @@ _print_usage() {
 }
 
 # exits
-_PREFIX_ABORTING='Aborting due to '
-
 error_exit() {
-    echo "${_PREFIX_ABORTING}$1"
+    echo "Aborting due to $1"
     exit 1
 }
 
 error_exit_with_usage() {
-    error_exit "${_PREFIX_ABORTING}$1\n$(_print_usage)"
+    error_exit "${1}\n\n$(_print_usage)"
 }
 
 # commands
@@ -93,7 +91,7 @@ CMDFNC_backup_keys() {
         echo "Copying ${_FILENAME} to ${_PATH_TARGET} …"
         cp "${_FILENAME}" "${_PATH_TARGET}"
     done
-    cd -
+    cd - > /dev/null
 }
 
 HELP_ARGS_claim=' PATH'