Commands
Setup
- hemtt new - Create a new project
Development
- hemtt check - Check the project for errors
- hemtt dev - Build the project for local development
- hemtt launch - Launch Arma 3 with your mod and dependencies
- hemtt build - Build the project for local testing
Release
- hemtt release - Build the project for release
Options
--just
The build
and dev
commands can be used to build a single addon. It can be used multiple times to build multiple addons.
hemtt build --just myAddon
It is advised to only use this on very large projects that take a long time to build.
It is advised to only use this after running the command once without --just
to ensure all addons are built.
Anytime you run any git commands that can modify files, you should run without --just
to ensure all addons are up to date.
Before reporting any unexpected behavior, try running without --just
first.
Global Options
-t, --threads
Number of threads to use, defaults to the number of CPUs.
hemtt ... -t 4
-v
Verbosity level, can be specified multiple times.
hemtt ... -v # Debug
hemtt ... -vv # Trace
When running inside a CI platform like GitHub Actions, the output will always be set to trace.