File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -158,22 +158,22 @@ strategy="$(
158
158
"git clone --depth 1 https://github.com/docker-library/official-images.git -b master ~/oi",
159
159
"# create a dummy empty image/layer so we can --filter since= later to get a meaningful image list",
160
160
"{ echo FROM " + (
161
- if ( .os | startswith("windows-") ) then
161
+ if .os | startswith("windows-") then
162
162
"mcr.microsoft.com/windows/servercore:ltsc" + (.os | ltrimstr("windows-"))
163
163
else
164
164
"busybox:latest"
165
165
end
166
166
) + "; echo RUN :; } | docker build --no-cache --tag image-list-marker -",
167
167
(
168
- if .os | startswith("windows-") | not then
168
+ if (env.BASHBREW_GENERATE_SKIP_PGP_PROXY) or (.os | startswith("windows-")) then
169
+ empty
170
+ else
169
171
(
170
172
"# PGP Happy Eyeballs",
171
173
"git clone --depth 1 https://github.com/tianon/pgp-happy-eyeballs.git ~/phe",
172
174
"~/phe/hack-my-builds.sh",
173
175
"rm -rf ~/phe"
174
176
)
175
- else
176
- empty
177
177
end
178
178
)
179
179
] | join("\n")),
You can’t perform that action at this time.
0 commit comments