File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ RUN ln -s /usr/bin/node /usr/bin/nodejs
69
69
# Add user's home directories to PATH at the front so they can install tools which
70
70
# override defaults
71
71
# Add dotnet tools to PATH so users can install a tool using dotnet tools and can execute that command from any directory
72
- ENV PATH ~ /.local/bin:~ /bin:~ /.dotnet/tools:$PATH
72
+ ENV PATH '$HOME /.local/bin:$HOME /bin:$HOME /.dotnet/tools' :$PATH
73
73
74
74
# Set AZUREPS_HOST_ENVIRONMENT
75
75
ENV AZUREPS_HOST_ENVIRONMENT cloud-shell/1.0
Original file line number Diff line number Diff line change @@ -74,8 +74,8 @@ Describe "Various programs installed with expected versions" {
74
74
75
75
It " has local paths in `$ PATH" {
76
76
$paths = ($env: PATH ).split(" :" )
77
- $paths | Should - Contain " ~ /bin"
78
- $paths | Should - Contain " ~ /.local/bin"
77
+ $paths | Should - Contain ' $HOME /bin'
78
+ $paths | Should - Contain ' $HOME /.local/bin'
79
79
}
80
80
81
81
It " Ansible pwsh has modules" {
You can’t perform that action at this time.
0 commit comments