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
in the generate.sh script, the command sed -e "s_##LOGO##_${logo}_g" throws the error sed: -e expression #1, char 22: unknown option to `s' . i changed it to sed -e "s%##LOGO##%${logo}%g" which worked for me.
The text was updated successfully, but these errors were encountered:
in the generate.sh script, the command
sed -e "s_##LOGO##_${logo}_g"
throws the errorsed: -e expression #1, char 22: unknown option to `s'
. i changed it tosed -e "s%##LOGO##%${logo}%g"
which worked for me.The text was updated successfully, but these errors were encountered: