Skip to content

Commit

Permalink
Merge pull request #2700 from posit-dev/bugfix/zeromq-shelljs-break
Browse files Browse the repository at this point in the history
Fix shelljs break with zeromq upstream
  • Loading branch information
jmcphers authored Apr 8, 2024
2 parents cd43189 + 67fe193 commit d277a3b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extensions/jupyter-adapter/scripts/install.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*---------------------------------------------------------------------------------------------
* Copyright (C) 2023 Posit Software, PBC. All rights reserved.
* Copyright (C) 2023-2024 Posit Software, PBC. All rights reserved.
*--------------------------------------------------------------------------------------------*/

import { spawnSync } from 'child_process';
Expand Down Expand Up @@ -32,7 +32,7 @@ if (platform() === 'darwin') {
// on every invocation in that case, which is no fun.
let zeromqVersion: string;
if (platform() === 'darwin') {
zeromqVersion = 'kevinushey/zeromq.js#fa6b52f85293d9fe14958d18f031d65520afd272';
zeromqVersion = 'jmcphers/zeromq.js#e260089d6ede978aeba635a5e552f46410609b83';
} else {
zeromqVersion = '[email protected]';
}
Expand Down

0 comments on commit d277a3b

Please sign in to comment.