blob: ed93bd4bb73e7de82279e465c76f8a84bc60833f (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/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/
|