Files
jami-daemon/tools/build-system/init-osc.sh
Tristan Matthews 6614ee1e24 * #8542: removed trailing whitespace from tree
Also added whitespace checking pre-commit hook when autogen.sh is called.
2012-02-03 13:14:02 -05:00

25 lines
513 B
Bash
Executable File

#!/bin/bash
#####################################################
# File Name: init-osc.sh
#
# Purpose :
#
# Author: Julien Bonjean (julien@bonjean.info)
#
# Creation Date: 2009-11-02
# Last Modified:
#####################################################
OSC_REPOSITORY="${ROOT_DIR}/sflphone-osc"
LAUNCHPAD_PACKAGES=( "sflphone-client-gnome" "sflphone-common" )
cd ${OSC_REPOSITORY}
for LAUNCHPAD_PACKAGE in ${LAUNCHPAD_PACKAGES[*]}
do
yes | osc init home:jbonjean:sflphone ${LAUNCHPAD_PACKAGE}
done
exit 0