mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
303ac917e5
Signed-off-by: Jess Frazelle <acidburn@google.com>
12 lines
92 B
Bash
Executable File
12 lines
92 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
(
|
|
cd /wireguard/src
|
|
make module
|
|
make module-install
|
|
make clean
|
|
)
|
|
|
|
exec $@
|