aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/oe-git-proxy-socks-command
blob: 39e0acb79869114a838fe39f51f3ddc489163254 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#! /bin/bash
SCRIPTDIR=`dirname $0`
# Check oe-git-proxy-socks exists
PROXYSOCKS=`which oe-git-proxy-socks 2> /dev/null`
if [ -z "$PROXYSOCKS" -a -e "$SCRIPTDIR/oe-git-proxy-socks.c" ]; then
	# If not try and build it
	gcc $SCRIPTDIR/oe-git-proxy-socks.c -o $SCRIPTDIR/oe-git-proxy-socks
fi
PROXYSOCKS=`which oe-git-proxy-socks 2> /dev/null`
if [ ! -x "$PROXYSOCKS" ]; then
	# If that fails, explain to the user
	echo "Unable to find oe-git-proxy-socks. This is usually created with the command"
	echo "'gcc scripts/oe-git-proxy-socks.c -o scripts/oe-git-proxy-socks' which we tried"
	echo "but it doesn't seem to have worked. Please compile the binary manually."
	exit 1
fi
oe-git-proxy-socks -S $GIT_PROXY_HOST:$GIT_PROXY_PORT $@