Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
mustard-mh committed May 21, 2024
1 parent d51c2e5 commit 2e31468
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion components/ide/code/gha-update-image/check-code-build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ const main = async () => {
console.log("fetch gitpod-io/openvscode-server with " + inputs.branch, { commit, version });

if (workspaceYaml.defaultArgs.codeVersion === version) {
throw new Error("code version is the same, no need to update");
console.error("code version is the same, no need to update");
return;
}
console.log(
`found different version ${version} (than ${workspaceYaml.defaultArgs.codeVersion}) with commit:${workspaceYaml.defaultArgs.codeCommit}`,
Expand Down

0 comments on commit 2e31468

Please sign in to comment.