$ clone git@github.com:wez/wezterm.git
/run/current-system/sw/bin/sh: /run/current-system/sw/bin/sh: cannot execute binary file
its shebang:
#!/usr/bin/env -S sh
now turns out as:
#!/nix/store/k48bha2fjqzarg52picsdfwlqx75aqbb-coreutils-9.5/bin/env -S /nix/store/0irlcqx2n3qm6b1pc9rsd2i8qpvcccaj-bash-5.2p37/bin/sh sh
workaround: sh clone <uri>
```
$ clone git@github.com:wez/wezterm.git
/run/current-system/sw/bin/sh: /run/current-system/sw/bin/sh: cannot execute binary file
```
its shebang:
```
#!/usr/bin/env -S sh
```
now turns out as:
```
#!/nix/store/k48bha2fjqzarg52picsdfwlqx75aqbb-coreutils-9.5/bin/env -S /nix/store/0irlcqx2n3qm6b1pc9rsd2i8qpvcccaj-bash-5.2p37/bin/sh sh
```
workaround: `sh clone <uri>`