[Vm-dev] Proposal | Clean-up source tree's *src folders

David T. Lewis lewis at mail.msen.com
Tue Jul 20 16:51:24 UTC 2021


On Tue, Jul 20, 2021 at 02:35:38PM +0200, Marcel Taeumel wrote:
>  
> Hi all --
> 
> "It's ready" again. Now with an explanation on how to review this:
> https://github.com/OpenSmalltalk/opensmalltalk-vm/pull/573
> 
> 

Hi Marcel,

The various shell scripts in the ./building directory are missing execute
permission, possibly because they were moved to their new location on a
non-unix system.

On Linux you can see the problem files with:

  $ grep -rl '#!.*/bin/' building | xargs ls -l | less

I did not check each file versus the Cog branch, but a quick fix is this:

  $ grep -rl '#!.*/bin/' building | xargs chmod +x

This finds all the files in the ./building directory that start with a
shebang line and sets them executable.

Finally, do a git commit, which will save the files with execute permissions.

Dave



More information about the Vm-dev mailing list