Commit e07d318c authored by Pierre Schmitz's avatar Pierre Schmitz
Browse files

commitpkg: Skip signing if signature already exists

parent a06ac245
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -156,15 +156,14 @@ for _arch in ${arch[@]}; do
		fi
		uploads+=("$pkgfile")

		if [[ $SIGNPKG == 'y' ]]; then
		sigfile="${pkgfile}.sig"
		if [[ $SIGNPKG == 'y' ]] && [ ! -f "${sigfile}" ]; then
			echo "Signing package ${pkgfile}..."
			if [[ -n $GPGKEY ]]; then
				SIGNWITHKEY="-u ${GPGKEY}"
			fi
			gpg --detach-sign --use-agent ${SIGNWITHKEY} "${pkgfile}" || abort
		fi

		sigfile="${pkgfile}.sig"
		if [ -f "${sigfile}" ]; then
			uploads+=("$sigfile")
		elif [[ $SIGNPKG == 'y' ]]; then