@eht16 commented on this pull request.


In scripts/gtk-bundle-from-msys2.sh:

> @@ -1,43 +1,51 @@
-#!/bin/sh
+#!/bin/bash

There are a couple of $(command...) in there even though I might added them after I set it to bash 👍
The reason is this way we don't need to care whether to use bashisms or not. And shell portability isn't an issue for this particular script. It is used in a Docker container where bash is always available (as defined by Dockerfile) or it is used on MSYS2 where bash is an essential package.
So we just make our own life easier. I'm a big fan of portable scripts but here it would be simply overkill.


You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or unsubscribe.