summaryrefslogtreecommitdiffstats
path: root/repo.postsync.d/q-reinit
blob: 0833c66fde072f1024050493f19e93728e97b173 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

repository_name=$1
repository_path=$3

if [ -n "${repository_name}" ]; then
	q ${PORTAGE_QUIET:+-q} --reinitialize="${repository_path}"
fi

: