Skip to content

Commit

Permalink
BUG: Fix entry point path
Browse files Browse the repository at this point in the history
  • Loading branch information
jonperdomo committed Apr 9, 2023
1 parent 0c091fe commit 54674b8
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions longreadsum
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@
# Add the library path to the LD_LIBRARY_PATH
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${PREFIX}/lib

# Change to the root directory
cd "${PREFIX}"
# Show all files in src/
echo "Files in src/"
ls -l "${PREFIX}"/src

# Run the entry point
python src/entry_point.py "$@"
# Run the entry point.py file
python "${PREFIX}"/src/entry_point.py "$@"

0 comments on commit 54674b8

Please sign in to comment.