Files
kamal/lib/tasks/mrsk/templates/mrsk
David Heinemeier Hansson f61beb6827 Basic binstub
2023-01-12 17:29:26 +01:00

9 lines
125 B
Bash
Executable File

#!/bin/bash
if [ "${*}" == "" ]; then
# Improve so list matches
exec bin/rake -T mrsk
else
exec bin/rake "mrsk:$@"
fi