1
0
mirror of https://git.disroot.org/80486DX2-66/polonium.git synced 2024-11-08 13:42:31 +05:30

test.sh: do not exit on command fail

This commit is contained in:
Intel A80486DX2-66 2024-07-08 20:38:12 +03:00
parent a6b39e3d1f
commit d7e5e12126
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B

View File

@ -1,6 +1,7 @@
#!/bin/sh
set +o histexpand # Disable parsing "!" as the history expansion character
set +e # Continue script execution even if a command fails
mkdir_if_not_exists() {
[ -d "$1" ] || mkdir "$1"