From 7f47f0518e6673f1f65d6302413d963901e8f41a Mon Sep 17 00:00:00 2001 From: nub31 Date: Thu, 16 Oct 2025 20:25:54 +0200 Subject: [PATCH] ... --- vscode/.gitignore | 2 +- vscode/makefile | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/vscode/.gitignore b/vscode/.gitignore index c5e82d7..c585e19 100644 --- a/vscode/.gitignore +++ b/vscode/.gitignore @@ -1 +1 @@ -bin \ No newline at end of file +out \ No newline at end of file diff --git a/vscode/makefile b/vscode/makefile index f2b1655..274bdcd 100644 --- a/vscode/makefile +++ b/vscode/makefile @@ -1,6 +1,6 @@ vscode: - mkdir -p bin - npx vsce package -o bin/nub-lang.vsix + mkdir -p out + npx vsce package -o out/nub-lang.vsix clean: - rm -r bin \ No newline at end of file + rm -r out \ No newline at end of file