From be8313acfc0e548b5318a7e83aa6a5133d2ce777 Mon Sep 17 00:00:00 2001 From: Andre Klapper Date: Thu, 21 Aug 2025 19:37:18 +0200 Subject: [PATCH] Auth: Fix a wrong command in a comment Summary: `bin/revoke` does not exist. Make it `bin/auth revoke`. Test Plan: Try commands on the command line. Reviewers: O1 Blessed Committers, valerio.bozzolan Reviewed By: O1 Blessed Committers, valerio.bozzolan Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno Differential Revision: https://we.phorge.it/D26273 --- .../auth/management/PhabricatorAuthManagementRevokeWorkflow.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/auth/management/PhabricatorAuthManagementRevokeWorkflow.php b/src/applications/auth/management/PhabricatorAuthManagementRevokeWorkflow.php index 67ee746c2c..f2a9e35688 100644 --- a/src/applications/auth/management/PhabricatorAuthManagementRevokeWorkflow.php +++ b/src/applications/auth/management/PhabricatorAuthManagementRevokeWorkflow.php @@ -62,7 +62,7 @@ final class PhabricatorAuthManagementRevokeWorkflow $is_everything = $args->getArg('everything'); if ($type === null && !$is_everything) { if ($is_list) { - // By default, "bin/revoke --list" implies "--everything". + // By default, "bin/auth revoke --list" implies "--everything". $types = $all_types; } else { throw new PhutilArgumentUsageException( -- 2.51.2