jaihysc / Jactorio

Recreating Factorio in C++ OpenGL
Other
75 stars 2 forks source link

Change shebang from sh to bash #36

Open MyNameIsTrez opened 3 months ago

MyNameIsTrez commented 3 months ago

Issue #35 was struggling running build.sh due to the misleading shebang.

They would have still run into the same issue due to them manually specifying sh with sh build.sh, but changing the shebang:

  1. Makes it clear for anyone looking at the first line of the file what the intended shell is
  2. Allows ./build.sh to work, whereas it did not before