-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgbtools
executable file
·61 lines (52 loc) · 1.22 KB
/
gbtools
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env bash
#-*- mode:sh -*-
export LANG=C.UTF-8
CONTAINER_NAME=guifibages/tools
# If we are called outside Docker build and run the container.
GBDIR=.local/guifibages
if test ! -f /.dockerenv; then
# Build
docker images | grep -q $CONTAINER_NAME || docker build -t $CONTAINER_NAME .
test -d $HOME/$GBDIR || mkdir -p $HOME/$GBDIR
docker run \
-v $HOME/.gitconfig:/root/.gitconfig:ro \
-v $HOME/$GBDIR:/root/.local/guifibages \
-v $(pwd):/usr/src/app:ro \
-v $SSH_AUTH_SOCK:/root/ssh-socket:ro \
-e SSH_AUTH_SOCK=/root/ssh-socket \
-e DEBUG=$DEBUG \
--rm -ti $CONTAINER_NAME $*
exit $?
fi
# Else, act as entrypoint
export GBDIR=$HOME/$GBDIR
test -n "$DEBUG" && hostname && env && set -x
function run
{
cmd=$*
test -n "$DEBUG" && echo "Running $cmd"
$cmd
}
function usage
{
cat <<EOF
Usage: gbtools <command> [parameters]
Commands:
Help
help This fine usage message.
halp Alias for help.
EOF
}
function error
{
(>&2 echo -e "Errors have been made, others will be blamed.\n$*")
exit 1
}
command=$1
shift
pyfile=/usr/src/app/$command.py
if test -x $pyfile; then
$pyfile $*
else
$command $*
fi