Skip to content

Commit

Permalink
no-task Updated file paths for required files in aijira script.
Browse files Browse the repository at this point in the history
  • Loading branch information
nxsschoenfeld committed Jun 22, 2023
1 parent 3472bc6 commit 39be2cd
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions aijira
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
if (file_exists(__DIR__ . '/vendor/autoload.php')) {
require __DIR__ . '/vendor/autoload.php';
} else {
require_once(__DIR__ . '/../../autoload.php');
require_once(__DIR__ . '/..autoload.php');
}

use Symfony\Component\Console\Application;
Expand All @@ -26,7 +26,7 @@ $application->add(new class('ticket:validate') extends Command {

protected function execute(InputInterface $input, OutputInterface $output): int
{
$command = ['./aiticketvalidator', $input->getArgument('ticket-no')];
$command = ['aiticketvalidator', $input->getArgument('ticket-no')];
$process = new Process($command);
$process->setTty(true);
$process->run();
Expand All @@ -46,7 +46,7 @@ $application->add(new class('ticket:score') extends Command {

protected function execute(InputInterface $input, OutputInterface $output): int
{
$command = ['./aiticketscorer', $input->getArgument('ticket-no')];
$command = ['aiticketscorer', $input->getArgument('ticket-no')];
$process = new Process($command);
$process->setTty(true);
$process->run();
Expand All @@ -66,7 +66,7 @@ $application->add(new class('ticket:test-cases') extends Command {

protected function execute(InputInterface $input, OutputInterface $output): int
{
$command = ['./aitickettestcases', $input->getArgument('ticket-no')];
$command = ['aitickettestcases', $input->getArgument('ticket-no')];
$process = new Process($command);
$process->setTty(true);
$process->run();
Expand All @@ -86,7 +86,7 @@ $application->add(new class('ticket:estimate') extends Command {

protected function execute(InputInterface $input, OutputInterface $output): int
{
$command = ['./aiticketestimate', $input->getArgument('ticket-no')];
$command = ['aiticketestimate', $input->getArgument('ticket-no')];
$process = new Process($command);
$process->setTty(true);
$process->run();
Expand All @@ -106,7 +106,7 @@ $application->add(new class('ticket:ask') extends Command {

protected function execute(InputInterface $input, OutputInterface $output): int
{
$command = ['./aiticketinterview', $input->getArgument('ticket-no')];
$command = ['aiticketinterview', $input->getArgument('ticket-no')];
$process = new Process($command);
$process->setTty(true);
$process->run();
Expand All @@ -126,7 +126,7 @@ $application->add(new class('ticket:test-cases') extends Command {

protected function execute(InputInterface $input, OutputInterface $output): int
{
$command = ['./aitickettestcases', $input->getArgument('ticket-no')];
$command = ['aitickettestcases', $input->getArgument('ticket-no')];
$process = new Process($command);
$process->setTty(true);
$process->run();
Expand All @@ -146,7 +146,7 @@ $application->add(new class('sprint:review') extends Command {

protected function execute(InputInterface $input, OutputInterface $output): int
{
$command = ['./aisprintreview', $input->getArgument('sprint-name')];
$command = ['aisprintreview', $input->getArgument('sprint-name')];
$process = new Process($command);
$process->setTty(true);
$process->run();
Expand All @@ -166,7 +166,7 @@ $application->add(new class('sprint:goals') extends Command {

protected function execute(InputInterface $input, OutputInterface $output): int
{
$command = ['./aisprintgoals', $input->getArgument('sprint-name')];
$command = ['aisprintgoals', $input->getArgument('sprint-name')];
$process = new Process($command);
$process->setTty(true);
$process->run();
Expand All @@ -187,7 +187,7 @@ $application->add(new class('sprint:release-notes') extends Command {

protected function execute(InputInterface $input, OutputInterface $output): int
{
$command = ['./aireleasenotes', $input->getArgument('sprint-name')];
$command = ['aireleasenotes', $input->getArgument('sprint-name')];
$process = new Process($command);
$process->setTty(true);
$process->run();
Expand Down

0 comments on commit 39be2cd

Please sign in to comment.