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