poke-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH] run.in: Default to running the poke binary


From: Jose E. Marchesi
Subject: Re: [PATCH] run.in: Default to running the poke binary
Date: Sun, 22 Mar 2020 11:08:06 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/26.1 (gnu/linux)

Hi John.

     # Now run the program
    -exec "$@"
    +if test $# -eq 0; then
    +    exec poke
    +else
    +    exec "$@"
    +fi

I don't like this change.  That script has clear semantics as it is now:
set the environment and run the given command-line.  Specializing it
this way may be confusing.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]