From 275fb73896d012230d27a8ead3c9e4d7c2842471 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A2u=20Cao?= Date: Mon, 9 Dec 2024 18:58:17 +0400 Subject: [PATCH] Move executables to build/ dir --- .gitignore | 2 +- deno.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 863280c..8cb6a96 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,3 @@ .env users.yaml -substr +build/ diff --git a/deno.json b/deno.json index 8583215..4161c81 100644 --- a/deno.json +++ b/deno.json @@ -2,7 +2,7 @@ "tasks": { "dev": "deno run --allow-all --watch server.ts", "server": "deno run --allow-all server.ts", - "compile": "deno compile --allow-all --include ./assets/ --output substr server.ts", + "compile": "deno compile --allow-all --include ./assets/ --output ./build/substr_x86_64-unknown-linux-gnu server.ts", "test": "deno test --allow-read --allow-env" }, "imports": {