export entries inside abra.sh are loaded into container environment, even those in abra cmd commands
#498
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Steps to reproduce:
abra.shwhich runexport FOO=barinside themabra app run <domain> app env | grep FOOExpected:
Actual:
FOO=baroutputSeems to be because of this parsing, which doesn't take into account whether an
exportis inside a function: https://git.coopcloud.tech/coop-cloud/abra/src/branch/main/pkg/config/env.go#L154-L165Dirty workaround for now is to change
exporttosetenv -xinabra.shfunctions 😈 (gj @cas )