You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unfortunately it is the only way at the moment. The feature that would make this easier, allowing to specify different recipes for different OSs, is blocked on #604. Sorry I don't have better news!
You could avoid the \ if you use shebang recipes:
_build_linux:
#!/usr/bin/env sh
step="build"
echo '${step} LINUX Begin!'
cd ./boilr_6uhrmittag/
make build
echo '${step} LINUX end!'
Hi,
I try to do cross platform justfile
i find a way with this
I need do to this condition for ALL my command
build_execute := if os_family() == "windows" { "just _build_windows" } else { "just _build_linux" }
is it the only way ?
Best regards.
The text was updated successfully, but these errors were encountered: