Commit 181646d0 authored by Pierre Schmitz's avatar Pierre Schmitz
Browse files

makechrootpkg: Install the built packages before running namcap to reduce...

makechrootpkg: Install the built packages before running namcap to reduce false positives and check inter split package dependencies.
parent 2d9a99ee
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -67,7 +67,7 @@ while getopts 'hcudr:I:l:n' arg; do
		r) passeddir="$OPTARG" ;;
		I) install_pkg="$OPTARG" ;;
		l) copy="$OPTARG" ;;
		n) run_namcap=true ;;
		n) run_namcap=true; makepkg_args="$makepkg_args -i" ;;
		*) makepkg_args="$makepkg_args -$arg $OPTARG" ;;
	esac
done