Basic binstub

This commit is contained in:
David Heinemeier Hansson
2023-01-12 17:29:26 +01:00
parent c481938cdb
commit f61beb6827
3 changed files with 30 additions and 16 deletions

8
lib/tasks/mrsk/templates/mrsk Executable file
View File

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