aboutsummaryrefslogtreecommitdiffstats
path: root/appimage/entrypoint
blob: 458a3acff8cf860b61868e9feb6d8d0d229353ae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash
set -e
if [ $(id -u) = 0 ]; then
    if [ ! -d /tmp/build/.gnupg ]; then
        echo "/tmp/build must exist and must contain .gnupg"
        exit 2
    fi
    id=$(stat -c %u /tmp/build)
    adduser --home /tmp/build --no-create-home --uid $id --disabled-password --gecos build build
    exec sudo -iu build $0 "$@"
fi

cd /tmp/build
if [ ! -d qpdf ]; then
    if [ "$1" == "" ]; then
        echo "A repository and optional git clone arguments must be given"
        exit 2
    fi
    git clone "$@" qpdf
fi
cd qpdf
./appimage/build-appimage --sign