Skip to content
Snippets Groups Projects
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
No related branches found
No related tags found
No related merge requests found
...@@ -67,7 +67,7 @@ while getopts 'hcudr:I:l:n' arg; do ...@@ -67,7 +67,7 @@ while getopts 'hcudr:I:l:n' arg; do
r) passeddir="$OPTARG" ;; r) passeddir="$OPTARG" ;;
I) install_pkg="$OPTARG" ;; I) install_pkg="$OPTARG" ;;
l) copy="$OPTARG" ;; l) copy="$OPTARG" ;;
n) run_namcap=true ;; n) run_namcap=true; makepkg_args="$makepkg_args -i" ;;
*) makepkg_args="$makepkg_args -$arg $OPTARG" ;; *) makepkg_args="$makepkg_args -$arg $OPTARG" ;;
esac esac
done done
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment