From b797116bb088fa060d2d16bcdea2ba3c61442738 Mon Sep 17 00:00:00 2001 From: pyth0n1c <87383215+pyth0n1c@users.noreply.github.com> Date: Wed, 28 Jul 2021 12:31:12 -0700 Subject: [PATCH] Listing out directory contents to diagnose pathing issues --- .github/workflows/actions-migration.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/actions-migration.yml b/.github/workflows/actions-migration.yml index b69022e56c..8417070692 100644 --- a/.github/workflows/actions-migration.yml +++ b/.github/workflows/actions-migration.yml @@ -79,7 +79,7 @@ jobs: uses: actions/checkout@v2 with: repository: mitre/cti #check out https://github.com/mitre/cti.git, defaults to HEAD - path: "~/cti" + path: "~/work/cti" #Now generate the documentation (uses Node) @@ -89,11 +89,11 @@ jobs: - name: Generate documentation run: | echo "Some path information" - pwd - ls -lah - echo $HOME - ls -lah ~ - ls -lah ~/cti + echo "Listing of ~/work" + ls -lah ~/work + echo "Listing of ~/work/security_content" + ls -lah ~/work/security_content + #Enter the virtualenv and run the docgen source venv/bin/activate