We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a032e8a commit d04142fCopy full SHA for d04142f
src/PostSharp.Engineering.BuildTools/Docker/EpilogueComponent.cs
@@ -49,8 +49,8 @@ ARG GITDIRS
49
} `
50
51
}
52
- RUN git config --global user.name $env:GIT_USER_NAME; `
53
- git config --global user.email $env:GIT_USER_EMAIL;
+ RUN if ( $env:GIT_USER_NAME ) { git config --global user.name $env:GIT_USER_NAME } `
+ if ( $env:GIT_USER_EMAIL ) { git config --global user.email $env:GIT_USER_EMAIL }
54
""" );
55
56
0 commit comments