export
entries inside abra.sh
are loaded into container environment, even those in abra cmd
commands
#498
Loading…
x
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.sh
which runexport FOO=bar
inside themabra app run <domain> app env | grep FOO
Expected:
Actual:
FOO=bar
outputSeems to be because of this parsing, which doesn't take into account whether an
export
is 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
export
tosetenv -x
inabra.sh
functions 😈 (gj @cas )