Skip to content

Commit

Permalink
Merge pull request #28 from ericfode/patch-1
Browse files Browse the repository at this point in the history
Make it work on windows
  • Loading branch information
Jake Miller authored Jun 24, 2022
2 parents 3ba3470 + fd0a3bb commit 1024fbf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,14 @@ import pino from "pino";
import { uniqueId } from "lodash";
import * as qs from "querystring";
import * as yargs from "yargs";
import { tmpdir } from os;
import { Channel } from "urbit-airlock/lib/channel";
import { connect } from "urbit-airlock/lib/setup";

import { wait, request, Config } from "./util";

const logger = pino(
pino.destination("/tmp/hoon-language-server.log")
pino.destination(tmpdir()+"/hoon-language-server.log")
);

interface RequestContinuation {
Expand Down

0 comments on commit 1024fbf

Please sign in to comment.