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