fix pushd

This commit is contained in:
Louis Abel 2021-11-10 17:01:31 -07:00
parent a0187dbf64
commit 41111d385b
Signed by: label
GPG Key ID: B37E62D143879B36
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ for COMPOSE in "${NONSIG_COMPOSE[@]}"; do
{} "${TARGET}"
# Return back to where we started
popd "$(dirname "$0")" || { echo "${COMPOSE}: Failed to change back"; break; }
popd || { echo "${COMPOSE}: Failed to change back"; break; }
done