aboutsummaryrefslogtreecommitdiffstats
path: root/entrypoint.sh
blob: 9df66a9a1646e1e7f189f57515caf3d338a9c457 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

set -e

## debug
if [ "$DOCKER_ABUILD_DEBUG" = "true" ]; then
  set -x
  PS4='$LINENO: '
fi

if [ ! -r "$HOME/.abuild/abuild.conf" ]; then
  abuild-keygen -n -i -a
fi

abuild "$@"