xref: /OpenGrok/opengrok-indexer/src/test/resources/sources/script/bazaar.sh (revision 2bcacabbe843448903326d34ff21a265b5f37596)
1#! /bin/ksh
2#
3# CDDL HEADER START
4#
5# The contents of this file are subject to the terms of the
6# Common Development and Distribution License (the "License").
7# You may not use this file except in compliance with the License.
8#
9# See LICENSE.txt included in this distribution for the specific
10# language governing permissions and limitations under the License.
11#
12# When distributing Covered Code, include this CDDL HEADER in each
13# file and include the License file at LICENSE.txt.
14# If applicable, add the following below this CDDL HEADER, with the
15# fields enclosed by brackets "[]" replaced with your own identifying
16# information: Portions Copyright [yyyy] [name of copyright owner]
17#
18# CDDL HEADER END
19#
20# Dummy wrapper-script to set up the PYTHONPATH and start bzr..
21PYTHONPATH=${HOME}/bin/bazaar/lib/python2.5/site-packages
22LC_ALL="C"
23export PYTHONPATH LC_ALL
24${HOME}/bin/bazaar/bin/bzr "$@"
25exit $?
26