Skip to content

Commit 8a44957

Browse files
committed
Change simple -> double quotes
1 parent 080d6d1 commit 8a44957

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

open-pr.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
#!/usr/bin/env node
2-
const util = require('util');
3-
const exec = util.promisify(require('child_process').exec);
4-
const gitRemoteOriginUrl = require('git-remote-origin-url');
5-
const open = require('open');
2+
const util = require("util");
3+
const exec = util.promisify(require("child_process").exec);
4+
const gitRemoteOriginUrl = require("git-remote-origin-url");
5+
const open = require("open");
66

77
async function generateLink() {
88
try {
9-
const { stdout, stderr } = await exec('git rev-parse --abbrev-ref HEAD');
9+
const { stdout, stderr } = await exec("git rev-parse --abbrev-ref HEAD");
1010
if (stderr) {
1111
throw stderr;
1212
}

0 commit comments

Comments
 (0)