Skip to content

Commit

Permalink
Fix pwd to PWD in basic runner guide in v12 docs
Browse files Browse the repository at this point in the history
  • Loading branch information
darach committed Nov 20, 2024
1 parent 2b0460d commit d8d6037
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions versioned_docs/version-0.12/guides/basics.md
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ end;
Same as before we can test our code, you can fetch the finished file from [git](__GIT__/../code/basics/transform.troy).

```bash
$ TREMOR_PATH="$TREMOR_PATH:${pwd}/transform" tremor run transfor/main.troy
$ TREMOR_PATH="$TREMOR_PATH:${PWD}/transform" tremor run transfor/main.troy
hello
Hello.
why
Expand Down Expand Up @@ -437,7 +437,7 @@ end;
That all set, we can run our script as before, just this time, when entering `exit` tremor will terminate.

```bash
$ TREMOR_PATH="$TREMOR_PATH:${pwd}/filter" tremor run filter/main.troy
$ TREMOR_PATH="$TREMOR_PATH:${PWD}/filter" tremor run filter/main.troy
hello
Hello.
why
Expand Down

0 comments on commit d8d6037

Please sign in to comment.