diff options
author | Luke Shumaker <lukeshu@parabola.nu> | 2018-01-03 14:18:21 -0500 |
---|---|---|
committer | Luke Shumaker <lukeshu@parabola.nu> | 2018-01-03 14:57:11 -0500 |
commit | e990ee409f33ca24b6dbc60530c8bd6f0ccf85bb (patch) | |
tree | 43fd2d03fc5ae95d2fc4eb247c17407ed09651a7 | |
parent | b5856cda2a5e1be18d2685eff2c05fe0dba2487f (diff) | |
download | devtools32-e990ee409f33ca24b6dbc60530c8bd6f0ccf85bb.tar.xz |
makechrootpkg: Adjust to work properly with `set -e`
This worked properly until eab5aba.
-rw-r--r-- | makechrootpkg.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/makechrootpkg.in b/makechrootpkg.in index c7fe076..a6c54cc 100644 --- a/makechrootpkg.in +++ b/makechrootpkg.in @@ -205,7 +205,7 @@ EOF { printf '#!/bin/bash\n' declare -f _chrootbuild - declare -p SOURCE_DATE_EPOCH 2>/dev/null + declare -p SOURCE_DATE_EPOCH 2>/dev/null || true printf '_chrootbuild "$@" || exit\n' if [[ $run_namcap = true ]]; then |