mirror of https://github.com/aptly-dev/aptly
19 lines
456 B
Bash
Executable File
19 lines
456 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
# make sure files are written with correct user ownership
|
|
if [ `stat -c %u /work/src` -ne 0 ]; then
|
|
usermod -u `stat -c %u /work/src` aptly >/dev/null
|
|
chown -R `stat -c %u /work/src` /var/lib/aptly
|
|
fi
|
|
|
|
args="$@"
|
|
if [ -z "$args" ]; then
|
|
cp /work/src/completion.d/aptly /usr/share/bash-completion/completions/
|
|
cmd="bash"
|
|
else
|
|
cmd="make $@"
|
|
fi
|
|
|
|
cd /work/src
|
|
sudo -u aptly PATH=$PATH:/work/src/build GOPATH=/work/src/.go $cmd
|