mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 11:24:55 +02:00
9 lines
99 B
Bash
Executable file
9 lines
99 B
Bash
Executable file
#!/bin/bash
|
|
|
|
CMD=vendor/bin/sail
|
|
|
|
if [ ! -x "${CMD}" ]; then
|
|
CMD=docker-compose
|
|
fi
|
|
|
|
${CMD} $@
|