@@ -113,8 +113,8 @@ RUN commitVersion=$(cat package.json | jq -r .version) \
113
113
RUN nameShort=$(jq --raw-output '.nameShort' product.json) && \
114
114
nameLong=$(jq --raw-output '.nameLong' product.json) && \
115
115
if [ "$CODE_QUALITY" = "insider" ]; then \
116
- nameShort="$nameShort - Insiders" \
117
- nameLong="$nameLong - Insiders" \
116
+ nameShort="$nameShort - Insiders" \
117
+ nameLong="$nameLong - Insiders" \
118
118
; fi && \
119
119
setQuality="setpath([\" quality\" ]; \" $CODE_QUALITY\" )" && \
120
120
setNameShort="setpath([\" nameShort\" ]; \" $nameShort\" )" && \
@@ -125,7 +125,7 @@ RUN nameShort=$(jq --raw-output '.nameShort' product.json) && \
125
125
mv product.json.tmp product.json && \
126
126
jq '{quality,nameLong,nameShort}' product.json
127
127
128
- RUN npm run gulp compile-build
128
+ RUN npm run gulp compile-build-pr
129
129
RUN npm run gulp extensions-ci
130
130
RUN npm run gulp minify-vscode-reh
131
131
RUN npm run gulp vscode-web-min-ci
@@ -135,13 +135,13 @@ RUN npm run gulp vscode-reh-linux-x64-min-ci
135
135
# this custom urls will be then replaced by blobserve.
136
136
# Check pkg/blobserve/blobserve.go, `inlineVars` method
137
137
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
140
140
141
141
# cli config: alises to gitpod-code
142
142
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
145
145
146
146
# grant write permissions for built-in extensions
147
147
RUN chmod -R ugo+w /vscode-reh-linux-x64/extensions
0 commit comments