export
entries inside abra.sh
are loaded into container environment, even those in abra cmd
commands
#498
Labels
No Label
abra
abra-gandi
awaiting-feedback
backups
bug
build
ci/cd
community organising
contributing
coopcloud.tech
democracy
design
documentation
duplicate
enhancement
finance
funding
good first issue
help wanted
installer
kadabra
performance
proposal
question
recipes.coopcloud.tech
security
test
wontfix
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: toolshed/organising#498
Loading…
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 )