-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2700 from posit-dev/bugfix/zeromq-shelljs-break
Fix shelljs break with zeromq upstream
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'; | ||
|
@@ -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]'; | ||
} | ||
|