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