7 lines
47 B
Bash
7 lines
47 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
# Start the app
|
|
exec "$@"
|
|
|
#!/bin/bash
|
|
set -e
|
|
|
|
# Start the app
|
|
exec "$@"
|
|
|