Skip to content

Commit

Permalink
Add PATH logging to the entrypoint script
Browse files Browse the repository at this point in the history
  • Loading branch information
cliffano committed Nov 1, 2024
1 parent 1a1843a commit b7335a6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

### Added
- Add PATH logging to the entrypoint script

## 1.1.0 - 2024-08-17
### Added
- Add environment file support for using environment variables within the shell command
Expand Down
2 changes: 2 additions & 0 deletions entrypoint-bash.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ set -o nounset

COMMAND="${1}"

echo "PATH: ${PATH}"

echo "Current directory: $(pwd)"
ls -alrth

Expand Down
2 changes: 2 additions & 0 deletions entrypoint-sh.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ set -o nounset

COMMAND="${1}"

echo "PATH: ${PATH}"

echo "Current directory: $(pwd)"
ls -alrth

Expand Down

0 comments on commit b7335a6

Please sign in to comment.