Skip to content

Commit

Permalink
Fixed minor bug which made renew command to fail on false positives
Browse files Browse the repository at this point in the history
  • Loading branch information
Techzy-Programmer committed Mar 27, 2024
1 parent b50e3fa commit 9d18f48
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
out
ToDo
deno.lock
dxpm.json
dxpm.jsonc
2 changes: 1 addition & 1 deletion app.meta.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const getGHRawURL = (branch: string, resource: string) =>
`https://raw.githubusercontent.com/Techzy-Programmer/dxpm/${branch}${resource}`;
const VERSION = "v0.2.6-us";
const VERSION = "v0.2.7-us";

export {
getGHRawURL,
Expand Down
3 changes: 1 addition & 2 deletions lib/helper/network.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@ async function read(conn: Deno.Conn) {
const n = await conn.read(buf);

if (!n) {
elog("Daemon process exited unexpectedly!");
Deno.exit(1);
throw new Error("Daemon process exited unexpectedly!");
}

const dataBuff = buf.subarray(0, n);
Expand Down

0 comments on commit 9d18f48

Please sign in to comment.