mirror of
https://github.com/ledgersmb/ledgersmb-docker.git
synced 2025-08-20 15:47:24 -04:00
7 lines
154 B
Bash
Executable File
7 lines
154 B
Bash
Executable File
#!/bin/bash
|
|
|
|
home_dir="$(dirname $(readlink -f $BASH_SOURCE))"
|
|
"$home_dir/config.sh" || { echo "Failed configuration" ; exit 1 }
|
|
|
|
exec "$home_dir/run.sh"
|