forked from Rockachopa/Timmy-time-dashboard
7 lines
231 B
Bash
7 lines
231 B
Bash
|
|
#!/bin/sh
|
||
|
|
# Wrapper script for the launchd tick timer on macOS.
|
||
|
|
# Ensures PATH is set so tox/python can be found.
|
||
|
|
export PATH="/usr/local/bin:/opt/homebrew/bin:$PATH"
|
||
|
|
cd "$(dirname "$0")/.." || exit 1
|
||
|
|
exec tox -e dev -- timmy tick
|