From c600e6ec6239f023146ebe44b622800ad83917d5 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Sun, 8 Jun 2025 17:59:14 -0700 Subject: [PATCH] feat(cli): support blocking bots --- cli/bin/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/bin/index.js b/cli/bin/index.js index 20aea6c..85acfdb 100755 --- a/cli/bin/index.js +++ b/cli/bin/index.js @@ -13,7 +13,7 @@ import { runTasksMenu } from '../lib/tasks/index.js'; process.on('unhandledRejection', (err) => handleExitError(err, 'Unhandled rejection')); process.on('uncaughtException', (err) => handleExitError(err, 'Uncaught exception')); -program.name('coryd').description('🪄 Run commands, jobs, download things and have fun.').version('3.0.0'); +program.name('coryd').description('🪄 Handle tasks, run commands or jobs, download things and have fun.').version('3.0.0'); program.command('init').description('Initialize CLI and populate required config.').action(initConfig); program.command('run [script]').description('Run site scripts and commands.').action(runRootScript); program.command('tasks').description('Handle repeated tasks.').action(runTasksMenu);