We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b50e3fa commit 9d18f48Copy full SHA for 9d18f48
.gitignore
@@ -1,4 +1,5 @@
1
out
2
ToDo
3
deno.lock
4
+dxpm.json
5
dxpm.jsonc
app.meta.ts
@@ -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 {
6
getGHRawURL,
lib/helper/network.ts
@@ -28,8 +28,7 @@ async function read(conn: Deno.Conn) {
28
const n = await conn.read(buf);
29
30
if (!n) {
31
- elog("Daemon process exited unexpectedly!");
32
- Deno.exit(1);
+ throw new Error("Daemon process exited unexpectedly!");
33
}
34
35
const dataBuff = buf.subarray(0, n);
0 commit comments