blob: 7bd644e0dc5d14d58d7876b0de3b7c2bbce92129 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/usr/bin/env bash
fetch_portage_tree() {
if [[ ! -d /usr/portage/.git ]] ; then
cd /usr/portage && git init > /dev/null 2>&1
git remote add origin git://anongit.gentoo.org/repo/gentoo.git
git pull --depth=1 origin master > /dev/null 2>&1
git branch -u origin/master master > /dev/null 2>&1
rm -rf /usr/portage/profiles/updates > /dev/null 2>&1
fi
}
main() {
fetch_portage_tree
}
main
|