7 lines
151 B
Bash
Executable File
7 lines
151 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
source "$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)/_common.sh"
|
|
|
|
./"${APP_NAME}" --config config/account.yaml
|