In base.mk we sometimes execute commands inside the containers with bash. While most of images we use have that, in some cases bash is not available, while sh is. Compare for example python3.x vs python3.x-alpine.
Therefore we should use sh everywhere for better compatibility.
In base.mk we sometimes execute commands inside the containers with
bash. While most of images we use have that, in some casesbashis not available, whileshis. Compare for example python3.x vs python3.x-alpine.Therefore we should use
sheverywhere for better compatibility.