inconsistent behavior when # in .env container/native #30
Labels
No Label
ci
priority
critical
priority
high
priority
low
status
abandonned
status
accepted
status
help_wanted
status
in_progress
status
refused
status
review_needed
type
bug
type
discussion
type
enhancement
type
question
type
refactor
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: poc/crieur#30
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?
Description
When using a password containing a "#", when running using the feature provided by the
dotenv
crate (sourcing the.env
), it fails and you have to put'
around the variable to make it workHowever, when using a container image with the
--env-file
and the.env
, you have to remove the'
in order for it to work.It have been tested in zsh.
Steps to reproduce
.env
, in zsh (or sh).--env-file
option. (using podman)Expected behavior
The two methods should have the same behavior.