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
Also non-ASCII env var names apparently (plus it seems API should prevent setting these in the first place?):
/tmp/codon/tmp/buildpacks/0f40890b54a617ec2334fac0439a123c6a0c1136/vendor/buildpack-stdlib_v8.sh: line 56: export: `<some-non-ascii-env-var>': not a valid identifier
While looking at build failure metrics, I noticed this internal error:
This appears to be due to an app having the env var
UID
set in it's config vars, andUID
being a read-only Bash env var.We should filter this env var out (along with any others labelled as
readonly
on https://www.gnu.org/software/bash/manual/html_node/Bash-Variables.html), here:heroku-buildpack-python/vendor/buildpack-stdlib_v8.sh
Lines 44 to 60 in fc44144
We should probably do this before implementing #1451 / #1700.
The text was updated successfully, but these errors were encountered: