My configuration files for Debian/Ubuntu applications
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

utility.sh 211 B

1234567891011121314151617
  1. ensure_tpm_path_exists() {
  2. mkdir -p "$(tpm_path)"
  3. }
  4. fail_helper() {
  5. local message="$1"
  6. echo "$message" >&2
  7. FAIL="true"
  8. }
  9. exit_value_helper() {
  10. if [ "$FAIL" == "true" ]; then
  11. exit 1
  12. else
  13. exit 0
  14. fi
  15. }