Skip to content

Commit 7dbe562

Browse files
committed
Fix build
Tool: gitpod/catfood.gitpod.cloud
1 parent c830145 commit 7dbe562

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

components/ide/code/leeway.Dockerfile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,8 @@ RUN commitVersion=$(cat package.json | jq -r .version) \
113113
RUN nameShort=$(jq --raw-output '.nameShort' product.json) && \
114114
nameLong=$(jq --raw-output '.nameLong' product.json) && \
115115
if [ "$CODE_QUALITY" = "insider" ]; then \
116-
nameShort="$nameShort - Insiders" \
117-
nameLong="$nameLong - Insiders" \
116+
nameShort="$nameShort - Insiders" \
117+
nameLong="$nameLong - Insiders" \
118118
; fi && \
119119
setQuality="setpath([\"quality\"]; \"$CODE_QUALITY\")" && \
120120
setNameShort="setpath([\"nameShort\"]; \"$nameShort\")" && \
@@ -125,7 +125,7 @@ RUN nameShort=$(jq --raw-output '.nameShort' product.json) && \
125125
mv product.json.tmp product.json && \
126126
jq '{quality,nameLong,nameShort}' product.json
127127

128-
RUN npm run gulp compile-build
128+
RUN npm run gulp compile-build-pr
129129
RUN npm run gulp extensions-ci
130130
RUN npm run gulp minify-vscode-reh
131131
RUN npm run gulp vscode-web-min-ci
@@ -135,13 +135,13 @@ RUN npm run gulp vscode-reh-linux-x64-min-ci
135135
# this custom urls will be then replaced by blobserve.
136136
# Check pkg/blobserve/blobserve.go, `inlineVars` method
137137
RUN cp /vscode-web/out/vs/gitpod/browser/workbench/workbench.html /vscode-web/index.html \
138-
&& cp /vscode-web/out/vs/gitpod/browser/workbench/callback.html /vscode-web/callback.html \
139-
&& sed -i -e "s/{{VERSION}}/$CODE_QUALITY-$CODE_COMMIT/g" /vscode-web/index.html
138+
&& cp /vscode-web/out/vs/gitpod/browser/workbench/callback.html /vscode-web/callback.html \
139+
&& sed -i -e "s/{{VERSION}}/$CODE_QUALITY-$CODE_COMMIT/g" /vscode-web/index.html
140140

141141
# cli config: alises to gitpod-code
142142
RUN cp /vscode-reh-linux-x64/bin/remote-cli/gitpod-code /vscode-reh-linux-x64/bin/remote-cli/code \
143-
&& cp /vscode-reh-linux-x64/bin/remote-cli/gitpod-code /vscode-reh-linux-x64/bin/remote-cli/gp-code \
144-
&& cp /vscode-reh-linux-x64/bin/remote-cli/gitpod-code /vscode-reh-linux-x64/bin/remote-cli/open
143+
&& cp /vscode-reh-linux-x64/bin/remote-cli/gitpod-code /vscode-reh-linux-x64/bin/remote-cli/gp-code \
144+
&& cp /vscode-reh-linux-x64/bin/remote-cli/gitpod-code /vscode-reh-linux-x64/bin/remote-cli/open
145145

146146
# grant write permissions for built-in extensions
147147
RUN chmod -R ugo+w /vscode-reh-linux-x64/extensions

0 commit comments

Comments
 (0)