9 lines
254 B
Bash
Executable File
9 lines
254 B
Bash
Executable File
#!/bin/bash
|
|
# Backward-compatible wrapper to task.sh (API passthrough)
|
|
# Usage: ./gantt-task-crud.sh [list|get|create|update|delete] [args...]
|
|
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
exec "$SCRIPT_DIR/task.sh" "$@"
|