9 lines
218 B
Bash
Executable File
9 lines
218 B
Bash
Executable File
#!/bin/bash
|
|
# Attach a file to a task via API
|
|
# Usage: ./attach-file.sh <task-id> <file-path>
|
|
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
exec "$SCRIPT_DIR/gantt.sh" task attach "$@"
|