mirror of
https://github.com/jimeh/dotfiles.git
synced 2026-02-19 13:26:40 +00:00
13 lines
257 B
Bash
Executable File
13 lines
257 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
export BACKEND_PORT=34802
|
|
|
|
if command -v vibe-kanban >/dev/null 2>&1; then
|
|
exec vibe-kanban "$@"
|
|
elif command -v npx >/dev/null 2>&1; then
|
|
exec npx vibe-kanban "$@"
|
|
else
|
|
echo "Neither vibe-kanban nor npx is installed"
|
|
exit 1
|
|
fi
|