Re: Shebang Lines

2023-01-09 Thread Scott Kostyshak
On Mon, Jan 09, 2023 at 06:54:12PM +0200, Dr Eberhard W Lisse wrote: > I don't understand how something more portable and less work needs > to be reversed for a packaging where it will be found either way), > but then I am the insttgator and biased :-)-O There are advantages and disadvantages. For

Re: Shebang Lines

2023-01-09 Thread Dr Eberhard W Lisse
I don't understand how something more portable and less work needs to be reversed for a packaging where it will be found either way), but then I am the insttgator and biased :-)-O el On 08/01/2023 13:15, José Matos wrote: > On Sat, 2023-01-07 at 17:46 -0500, Richard Kimberly Heck wrote: [...] >

Re: Shebang Lines

2023-01-08 Thread Stephan Witt
Am 08.01.2023 um 20:34 schrieb Dr Eberhard W Lisse : > > I didn't mean it just for that script. > > I like the bash that is first in my path. That’s what I don’t like. The script works as expected with Apples /bin/bash and there is no need to fix something what’s not broken. > I like the env

Re: Shebang Lines

2023-01-08 Thread Dr Eberhard W Lisse
I didn't mean it just for that script. I like the bash that is first in my path. I like the env method for all scripts (perl, bash, python lua and whatnot). And, since Apple apparently prefers zsh to bash as the default shell nowadays it may just be that they will remove it like the did with pyt

Re: Shebang Lines

2023-01-08 Thread Stephan Witt
Am 07.01.2023 um 19:11 schrieb Richard Kimberly Heck : > > On 1/7/23 10:00, Dr Eberhard W Lisse wrote: >> I see the >> >> /Applications/LyX.app/Contents/MacOS/inkscape >> >> script has >> >> #!/bin/bash >> >> as the shebang. Can that please be changed (in all shell scripts) to read >

Re: Shebang Lines

2023-01-08 Thread Richard Kimberly Heck
On 1/8/23 06:15, José Matos wrote: On Sat, 2023-01-07 at 17:46 -0500, Richard Kimberly Heck wrote: I've changed the Mac scripts in stable. Should we do this for the python scripts, too? E.g., replace #!/usr/bin/python3 with #!/usr/bin/env python3 ?? Riki Please do not. That will mean more

Re: Shebang Lines

2023-01-08 Thread José Matos
On Sat, 2023-01-07 at 17:46 -0500, Richard Kimberly Heck wrote: > I've changed the Mac scripts in stable. Should we do this for the > python > scripts, too? E.g., replace > > #!/usr/bin/python3 > > with > > #!/usr/bin/env python3 > > ?? > > Riki Please do not. That will mean more work for me

Re: Shebang Lines

2023-01-07 Thread Richard Kimberly Heck
On 1/7/23 17:29, Pavel Sanda wrote: On Sat, Jan 07, 2023 at 01:11:46PM -0500, Richard Kimberly Heck wrote: Anyone else have thoughts about this? In principle should be fine (and more portable). I've changed the Mac scripts in stable. Should we do this for the python scripts, too? E.g., repla

Re: Shebang Lines

2023-01-07 Thread Pavel Sanda
On Sat, Jan 07, 2023 at 01:11:46PM -0500, Richard Kimberly Heck wrote: > Anyone else have thoughts about this? In principle should be fine (and more portable). Pavel -- lyx-devel mailing list lyx-devel@lists.lyx.org http://lists.lyx.org/mailman/listinfo/lyx-devel

Shebang Lines

2023-01-07 Thread Richard Kimberly Heck
On 1/7/23 10:00, Dr Eberhard W Lisse wrote: I see the /Applications/LyX.app/Contents/MacOS/inkscape script has #!/bin/bash as the shebang. Can that please be changed (in all shell scripts) to read #!/usr/bin/env bash Stefan, is this harmless? Anyone else have thoug