Skip to content

Commit

Permalink
add more ls commands to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippMa committed Jan 14, 2025
1 parent fc44372 commit b42aaa0
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build_executable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,12 @@ jobs:
run: echo "sitepackage_dir=$(python -c "import site; print(site.getsitepackages()[0])")" >> $GITHUB_ENV

- name: List contents of site package directory
run: ls $sitepackage_dir
run: echo $sitepackage_dir && ls $sitepackage_dir

- run: ls $sitepackage_dir/spdx_tools
- run: ls $sitepackage_dir/spdx_tools/spdx
- run: ls $sitepackage_dir/spdx_tools/spdx/parser
- run: ls $sitepackage_dir/spdx_tools/spdx/parser/tagvalue

- name: Build executable
run: uv run pyinstaller --onefile --add-data "$sitepackage_dir/license_expression/data/scancode-licensedb-index.json:./license_expression/data" --add-data "$sitepackage_dir/spdx_tools/spdx/parser/tagvalue/parser.out:./spdx_tools/spdx/parser/tagvalue" src/opossum_lib/cli.py
Expand Down

0 comments on commit b42aaa0

Please sign in to comment.