aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorLouis Pilfold <louis@lpil.uk>2021-08-30 12:19:06 +0100
committerLouis Pilfold <louis@lpil.uk>2021-08-30 12:19:06 +0100
commit6529e7ebcd8681f2d1687d2aa8e44838c25ed279 (patch)
tree75e3095b7baf6b08a1ea2168fb9eb6c6365618bb /bin
parent78815bcf52297b6edaa39a3f36e0d543f4f37484 (diff)
downloadjavascript-6529e7ebcd8681f2d1687d2aa8e44838c25ed279.tar.gz
javascript-6529e7ebcd8681f2d1687d2aa8e44838c25ed279.zip
build -> target
Diffstat (limited to 'bin')
-rw-r--r--bin/run-tests.js2
-rw-r--r--bin/test.sh4
2 files changed, 3 insertions, 3 deletions
diff --git a/bin/run-tests.js b/bin/run-tests.js
index afbd7ec..0497367 100644
--- a/bin/run-tests.js
+++ b/bin/run-tests.js
@@ -1,7 +1,7 @@
import { readdir, stat } from "fs/promises";
import { resolve, relative } from "path";
-const dir = "_build/lib/gleam_javascript";
+const dir = "target/lib/gleam_javascript";
async function main() {
console.log("Running tests...");
diff --git a/bin/test.sh b/bin/test.sh
index dbf6fa2..d8efb03 100644
--- a/bin/test.sh
+++ b/bin/test.sh
@@ -2,11 +2,11 @@
set -eu
library_dir() {
- echo "_build/deps/$1"
+ echo "target/deps/$1"
}
project_dir() {
- echo "_build/lib/$1"
+ echo "target/lib/$1"
}
clone_dep() {