mirror of
https://github.com/strongdm/comply
synced 2024-11-06 07:55:26 +00:00
13 lines
197 B
Plaintext
13 lines
197 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -euo pipefail
|
||
|
|
||
|
main() {
|
||
|
apt-get update && apt-get install zip
|
||
|
git branch --set-upstream-to=origin/master release
|
||
|
set -x
|
||
|
exec /bin/bash -c "$@"
|
||
|
}
|
||
|
|
||
|
main "$@"
|