We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87ffdec commit 7b9d962Copy full SHA for 7b9d962
text/3502-cargo-script.md
@@ -512,7 +512,7 @@ Considerations:
512
- The command that is run in a `#!` line should not require arguments (e.g. not
513
`#!/usr/bin/env cargo <something>`) because it will fail. `env` treats the
514
rest of the line as the bin name, spaces included. You need to use `env -S`
515
- but that wasn't supported on macOS at least, last I tested.
+ but that isn't portable across all `env` implementations (e.g. busybox).
516
- Either don't have a name that looks like a cargo-plugin (e.g. not
517
`cargo-<something>`) to avoid confusion or make it work (by default, `cargo
518
something` translates to `cargo-something something` which would be ambiguous
0 commit comments