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