blob: c6c5e6070678a800d1a0032b67ab7a4a87e51fe6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/bash
. /etc/makepkg.conf
ARCH=$CARCH
SRC_PROFILE=$ARCH-testing-local
DEST_PROFILE=$ARCH-testing-local-httpd
rsync --exclude=vbg.jpg --exclude=pacman.conf --delete -av larch/profiles/$SRC_PROFILE/ larch/profiles/$DEST_PROFILE/
DEST_PROFILE=$ARCH-testing-REMOTE
rsync --exclude=vbg.jpg --exclude=pacman.conf --delete -av larch/profiles/$SRC_PROFILE/ larch/profiles/$DEST_PROFILE/
DEST_PROFILE=$ARCH-RELEASE-REMOTE
rsync --exclude=vbg.jpg --exclude=pacman.conf --delete -av larch/profiles/$SRC_PROFILE/ larch/profiles/$DEST_PROFILE/
|