You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For visibility, moving issue (#38) to the discussion thread here
Hi, Mitchell:
I got a Bad Substitution error as well, made the fix below and that seemed to work until I cam up with the next error via Screenshot:
Looks like another /bin/sh. I am using /bin/bash. Thoughts?
_First, I got a "Bad substitution" error. The Makefile uses parameter expansion like ${variable:0:64}, which only works in bash, but make was using /bin/sh by default. I tried adding SHELL := /bin/bash as the first line of the Makefile, and that seemed to work!
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
For visibility, moving issue (#38) to the discussion thread here
Hi, Mitchell:
I got a Bad Substitution error as well, made the fix below and that seemed to work until I cam up with the next error via Screenshot:
Looks like another /bin/sh. I am using /bin/bash. Thoughts?
_First, I got a "Bad substitution" error. The Makefile uses parameter expansion like ${variable:0:64}, which only works in bash, but make was using /bin/sh by default. I tried adding SHELL := /bin/bash as the first line of the Makefile, and that seemed to work!
Originally posted by @CjuanRcris7 in #34 (comment)_
Beta Was this translation helpful? Give feedback.
All reactions