mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-04-20 19:38:39 +00:00
11 lines
220 B
Bash
Executable File
11 lines
220 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# cleanup
|
|
rm -rf /app/tmp
|
|
rm -rf /tmp/aptly*
|
|
|
|
usermod -u `stat -c %u /app` aptly >/dev/null
|
|
chown -R `stat -c %u /app` /var/lib/aptly
|
|
|
|
su - aptly -c "cd /app; export GOPATH=/app/.go; make docker-test TEST=$@"
|