Skip to content

Commit

Permalink
Merge pull request #559 from dbekaert/etc-update
Browse files Browse the repository at this point in the history
Update entrypoint.sh
  • Loading branch information
cmarshak authored Jun 29, 2023
2 parents 7225a8d + c3f53b6 commit df4b400
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ and uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+ add CLI for the old processDelayFiles script and rename to raiderCombine
+ Fix gridding bug in accessing HRRR-AK
+ misc clean-up
+ specify unbuffered python output in the docker entrypoint script
+ Specify unbuffered python output in the docker entrypoint script using `python -um RAiDER.cli ...` whose `__main__.py` is the desired entrypoint.

## [0.4.3]
+ Series of bug-fixes/compatibility updates with stats class:
Expand Down
2 changes: 1 addition & 1 deletion tools/RAiDER/etc/entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash --login
set -e
conda activate RAiDER
exec python -u raider.py "$@"
exec python -um RAiDER.cli "$@"

0 comments on commit df4b400

Please sign in to comment.