From 8e5fab3b66747318b17c8f050d3b9143a6975e27 Mon Sep 17 00:00:00 2001 From: wdower <57142072+wdower@users.noreply.github.com> Date: Thu, 22 Aug 2024 01:49:22 -0400 Subject: [PATCH] Update run_command.js adding attest to the allowable topics --- run_command.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_command.js b/run_command.js index 732ceb4a8..779acfcbc 100644 --- a/run_command.js +++ b/run_command.js @@ -19,7 +19,7 @@ async function runCommand({overrideCommand, safCLIPath}) { const saf_command = parse(command_string); - const allowable_topics = ['convert', 'generate', 'harden', 'scan', 'validate', 'view']; + const allowable_topics = ['attest', 'convert', 'generate', 'harden', 'scan', 'validate', 'view']; const topic = saf_command[0].includes(':') ? saf_command[0].split(':')[0] : saf_command[0]; if (!allowable_topics.includes(topic)) {