Skip to content

Commit

Permalink
invalid syntax fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jackfranklin committed Jul 10, 2020
1 parent bd23b65 commit 925b3b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/ensure-correct-devtools-protocol-package.ts
Expand Up @@ -44,7 +44,7 @@ const currentProtocolPackageInstalledVersion =
/**
* Ensure that the devtools-protocol version is pinned.
*/
if (/^[^0-9]/.test(currentProtocolPackageInstalledVersion) {
if (/^[^0-9]/.test(currentProtocolPackageInstalledVersion)) {
console.log(
`ERROR: devtools-protocol package is not pinned to a specific version.\n`
);
Expand Down

0 comments on commit 925b3b1

Please sign in to comment.