We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb9ca8d commit 3b01434Copy full SHA for 3b01434
1 file changed
scripts/setup.ts
@@ -75,7 +75,9 @@ if (import.meta.main) {
75
if (!content.endsWith("\n")) await writer.write(encoder.encode("\n"));
76
await writer.write(encoder.encode(`export DREAMLAB_DIR="${DREAMLAB_ROOT}"\n`));
77
await writer.write(
78
- encoder.encode(`alias wql='deno run -A "$DREAMLAB_DIR/scripts/wql.ts"'\n`),
+ encoder.encode(
79
+ `alias wql='${Deno.execPath()} run -A "$DREAMLAB_DIR/scripts/wql.ts"'\n`,
80
+ ),
81
);
82
83
await writer.ready;
0 commit comments