10 lines
198 B
Bash
Executable File
10 lines
198 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
# shellcheck source=./lib/gantt_cli.sh
|
|
source "$SCRIPT_DIR/lib/gantt_cli.sh"
|
|
|
|
run_gantt_cli "task.sh" "$@"
|