8 lines
55 B
Bash
8 lines
55 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
cp -r /build /app/source
|
||
|
|
||
|
exec "$@"
|