Stewmath / oracles-disasm

Disassembly of Oracle of Ages and Seasons
171 stars 42 forks source link

Don't assume that /bin/sh is the same as /bin/bash #3

Closed pkmnfrk closed 6 years ago

pkmnfrk commented 6 years ago

Hi, it seems your scripts all assume that /bin/sh is the same as /bin/bash. I'm not sure how it is on other linux systems, but in my VM, /bin/sh is not bash. As a result, trying to build gives me a lot of errors about [[ and stuff.

This fixes that by specifying bash explicitly.

Stewmath commented 6 years ago

Thanks!