#!/usr/bin/env Rscript
# artma command-line launcher. It resolves nothing from its own path and relies
# solely on the installed artma package. Install it onto your PATH with
# artma::cli_install(), or invoke the CLI directly via
# Rscript -e 'artma::cli_run()' <command> [options].
status <- artma::cli_run()
if (!is.numeric(status) || length(status) != 1L || is.na(status)) status <- 1L
quit(save = "no", status = as.integer(status))
