Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Jarred-Sumner committed Feb 16, 2021
1 parent 9b02c05 commit 33d9dae
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
24 changes: 12 additions & 12 deletions bin/git-peek

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions bin/git-peek.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ import type { Writable } from "stream";
import zlib from "zlib";
import rimraf from "rimraf";

const _SEARCH_PATH = "src/Search";
const _REGISTER_PROTOCOL_PATH = "src/registerProtocol";
const _CONFIRM_PROMPT_PATH = "src/confirmPrompt";
const _SEARCH_PATH = path.join(__dirname, "Search");
const _REGISTER_PROTOCOL_PATH = path.join(__dirname, "registerProtocol");
const _CONFIRM_PROMPT_PATH = path.join(__dirname, "confirmPrompt");

function resolveAfterDelay(delay) {
return new Promise((resolve, reject) => setTimeout(resolve, delay));
Expand Down

0 comments on commit 33d9dae

Please sign in to comment.