1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/bash
#
# Copyright 2009 Canonical Ltd. This software is licensed under the
# GNU Affero General Public License version 3 (see the file LICENSE).
set -x
# Variables, lockfile and exit handler for PPA scripts.
source `dirname $0`/cron.base-ppa
LPCURRENT=`dirname $0`/../..
# Accept PPA binary uploads
$LPCURRENT/scripts/process-accepted.py -v --ppa ubuntu
# Publish source and binary PPAs into disk.
$LPCURRENT/scripts/publish-distro.py --ppa -d ubuntu
# Publish private PPAs.
$LPCURRENT/scripts/publish-distro.py --private-ppa -d ubuntu
|