diff --git a/longreadsum b/longreadsum index d931151..d02f7cf 100644 --- a/longreadsum +++ b/longreadsum @@ -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 "$@"