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
.djinrc will be loaded before any build command or task command, also some environment must be provisioned to enable executing specific tasks in each scenario, eg:
#!/bin/bashcase$DJIN_COMMAND_TYPEin
build)
# Some code here ...
;;
task)
# Some code here ...
;;
esac
With this some workarounds can be dropped, eg:
release:
local:
run:
- (source ~/.zshrc || true)
- verto tag up {{args}}
- bundle exec rake release
The text was updated successfully, but these errors were encountered:
.djinrc will be loaded before any build command or task command, also some environment must be provisioned to enable executing specific tasks in each scenario, eg:
With this some workarounds can be dropped, eg:
The text was updated successfully, but these errors were encountered: