Use bash strict mode in most shell scripts

This commit is contained in:
Ohad Livne 2025-07-12 23:32:33 +03:00
parent 8ca04dec25
commit e0c33b01b7
Signed by: libohad-dev
GPG key ID: 34FDC68B51191A4D
28 changed files with 112 additions and 28 deletions

View file

@ -1,4 +1,7 @@
#! /usr/bin/sh
#! /usr/bin/bash
set -euo pipefail
IFS=$'\n\t'
REPO_DIR="$(systemd-path user-state-private)"/git-sync
if [ -d "${REPO_DIR}" ]