summaryrefslogtreecommitdiff
path: root/resetmode
blob: 626899829b862eb21785ac68c501e47bd0483380 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/env bash

empty_portage_tree() {
	if [ -d ""$portagedir"/.git" ] ; then
		find "$portagedir" -mindepth 1 -name "packages" -prune -o -name "distfiles" -prune -o -exec rm -rf {} \; > /dev/null 2>&1
	fi
}

reset_portage_config() {
	rm ""$confdir"/make.conf"
	rm ""$confdir"/make.profile"
	rm "$confdir"
	rm -rf "$clonedir"
}

fetch_portage_config() {
	pushd /opt > /dev/null 2>&1
	git clone https://gitlab.com/redcore/redcore-build.git > /dev/null 2>&1
	popd > /dev/null 2>&1
}

main () {
	empty_portage_tree
	reset_portage_config
	fetch_portage_config
}
main