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
setting MOMMY_CAREGIVER="a\/b" results in the error sed: -e expression #5, char 20: unterminated `s' command because we do sed -e "s/%%CAREGIVER%%/$caregiver/g", which is unsanitised input into the replacement part of the sed command. therefore, mommy should escape the $caregiver; according to this answer it suffices to escape just a few characters~
The text was updated successfully, but these errors were encountered:
setting
MOMMY_CAREGIVER="a\/b"
results in the errorsed: -e expression #5, char 20: unterminated `s' command
because we dosed -e "s/%%CAREGIVER%%/$caregiver/g"
, which is unsanitised input into the replacement part of the sed command. therefore, mommy should escape the$caregiver
; according to this answer it suffices to escape just a few characters~The text was updated successfully, but these errors were encountered: