Setting argument options #69
-
Deno 1.12 just landed yesterday, and it introduces a new I'm using a simple script to first generate the seed number as part of a GitHub Action step, and I'd like to pass it to a Example So I tried this – $ VR_LOG=DEBUG vr test --shuffle=1234
Running > deno test --lock=lock.json --cached-only --shuffle 1234 I see this strips away the + Running > deno test --lock=lock.json --cached-only --shuffle=1234
- Running > deno test --lock=lock.json --cached-only --shuffle 1234 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hey @paambaati, thanks for reporting! Can you confirm that $ vr run test --shuffle=1234
^^^ yields the desired command? Looks like the method we use to forward additional arguments in the |
Beta Was this translation helpful? Give feedback.
Hey @paambaati, thanks for reporting! Can you confirm that
$ vr run test --shuffle=1234 ^^^
yields the desired command?
Looks like the method we use to forward additional arguments in the
vr
command normalizes the options, see #70.