#!/usr/bin/env nu # Simple wrapper to run the nu version manager # Usage: nu run_nu_version.nu [command] source update_nu_versions.nu let command = try { if ($env.args | length) > 0 { $env.args.0 } else { "help" } } catch { "help" } nu-version $command