mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-04-19 19:28:22 +00:00
13 lines
241 B
Bash
Executable File
13 lines
241 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
usermod -u `stat -c %u /work/src` aptly >/dev/null
|
|
chown -R `stat -c %u /work/src` /var/lib/aptly
|
|
|
|
if [ -z "$@" ]; then
|
|
echo Error: no make target specified
|
|
exit 1
|
|
fi
|
|
|
|
cd /work/src
|
|
su aptly -c "GOPATH=$PWD/.go make $@"
|