Replies: 4 comments 2 replies
-
I think this is something, which #1503 would fix. It is possible that ubuntu's /etc/environment file contains a line such as |
Beta Was this translation helpful? Give feedback.
-
There is a distinction, in that bullseye defines PATH in $ docker run -t debian:bullseye-slim bash -c 'grep PATH /etc/profile'
PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
PATH="/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games"
export PATH and ubuntu indeed defines PATH in $ docker run -t ubuntu:jammy bash -c 'grep PATH /etc/environment'
PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin" But the quoting looks the same. |
Beta Was this translation helpful? Give feedback.
-
Creates this output
This doesn't have the quoting problem, but it just seems to ignore |
Beta Was this translation helpful? Give feedback.
-
If thats more compatible with the way github works, than its better IMO 😄 |
Beta Was this translation helpful? Give feedback.
-
When I run a very simple workflow, that just outputs the
PATH
variable, I see a difference between "bullseye" and "jammy", namely that for "jammy" the PATH is somewhat corrupted with a quoted PATH:Debian works
Ubuntu doesn't
I think it must be an
act
bug somewhere.Beta Was this translation helpful? Give feedback.
All reactions