forked from lix-project/lix
nix run
using $SHELL as default command
This commit is contained in:
parent
5e7ccdc9e3
commit
9d04b5da17
|
@ -59,14 +59,14 @@ struct RunCommon : virtual Command
|
||||||
|
|
||||||
struct CmdRun : InstallablesCommand, RunCommon, MixEnvironment
|
struct CmdRun : InstallablesCommand, RunCommon, MixEnvironment
|
||||||
{
|
{
|
||||||
std::vector<std::string> command = { "bash" };
|
std::vector<std::string> command = { getEnv("SHELL").value_or("bash") };
|
||||||
|
|
||||||
CmdRun()
|
CmdRun()
|
||||||
{
|
{
|
||||||
mkFlag()
|
mkFlag()
|
||||||
.longName("command")
|
.longName("command")
|
||||||
.shortName('c')
|
.shortName('c')
|
||||||
.description("command and arguments to be executed; defaults to 'bash'")
|
.description("command and arguments to be executed; defaults to '$SHELL'")
|
||||||
.labels({"command", "args"})
|
.labels({"command", "args"})
|
||||||
.arity(ArityAny)
|
.arity(ArityAny)
|
||||||
.handler([&](std::vector<std::string> ss) {
|
.handler([&](std::vector<std::string> ss) {
|
||||||
|
|
Loading…
Reference in a new issue