Skip to content

Commit

Permalink
Fix docker-entrypoint.sh logs
Browse files Browse the repository at this point in the history
  • Loading branch information
antlafarge authored Jul 16, 2024
1 parent fd7d2da commit 4b6d18d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ OS_prettyName=$(cat /etc/os-release | grep "PRETTY_NAME=" | sed -En "s/^PRETTY_N
log "OS = \"$OS_prettyName\""

# Log user ID and group ID
log "USER = \"${id -u}:${id -g}\""
log "USER = \"$(id -u):$(id -g)\""

# JAVA
if [ "$OS" = "ubuntu" ]; then
Expand Down

0 comments on commit 4b6d18d

Please sign in to comment.