blob: 52be57565b55459f7a339f137525a272e305946d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/bash
set -e
cd ~/arch/extra/pacman-mirrorlist/
svn up
cd trunk
upgpkg a
svn diff mirrorlist | pygmentize
printf "confirm update (enter)"
read
makepkg -fc
corepkg "upstream update"
dbrel
|