Commit bb581055 authored by Andreas Tille's avatar Andreas Tille
Browse files

Fix typo

parent 1dabe798
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -8,10 +8,10 @@ if [ "${AUTOPKGTEST_TMP}" = "" ] ; then
  # Double quote below to expand the temporary directory variable now versus
  # later is on purpose.
  # shellcheck disable=SC2064
  trap "rm -rf ${AUTOPKGTEST_TMP}" 0 INT QUIT ABRT PIPE TERM
#  trap "rm -rf ${AUTOPKGTEST_TMP}" 0 INT QUIT ABRT PIPE TERM
fi

for D in /usr/share/doc/${pkg}/Examples/*; do if [ -d "${D}" ]; then cp  -a ${D}/* "${AUTOPKGTEST_TMP}"; fi; done
for D in /usr/share/doc/${pkg}/examples/*; do if [ -d "${D}" ]; then cp  -a ${D}/* "${AUTOPKGTEST_TMP}"; fi; done

cd "${AUTOPKGTEST_TMP}"