mirror of
https://github.com/reifat/daily-notes-sorter.git
synced 2026-07-22 06:42:08 +00:00
7 lines
177 B
Bash
Executable file
7 lines
177 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# macOS double-clickable wrapper that delegates to the Unix installer
|
|
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
exec bash "$SCRIPT_DIR/install.sh" "$@"
|
|
|
|
|
|
|