transfer.sh: drop recursive chown

This shouldn't be needed now that we're not copying files via a USB stick.
This commit is contained in:
Benjamin Gilbert 2018-11-20 13:15:51 -05:00
parent 3f5af54465
commit e443b9afdb

View File

@ -175,11 +175,6 @@ case "${CMD}" in
if [[ -z "${BASEDIR}" ]]; then
usage
fi
if [[ -d "${BASEDIR}" && ! -O "${BASEDIR}" ]]; then
echo "Fixing ownership of ${BASEDIR}..."
sudo chown -R "${USER}" "${BASEDIR}"
fi
;;
esac