- Added --stdin flag to bake format command for editor integration (#20)
- Fixed shell variable assignment spacing (#35) and indentation in shell recipes (#36)
See below for updating completions.
Using the completions command:
# Create completions dir if not already
mkdir -p ~/.local/share/bash-completion/completions/
# Generate bash completion script
mbake completions bash
# Save bash completion to file
mbake completions bash > ~/.local/share/bash-completion/completions/mbake
Manual Installation:
# Source the completion script
source <(mbake completions bash)
# Or save to a file and source it
mbake completions bash > ~/.bash_completion.d/mbake
echo "source ~/.bash_completion.d/mbake" >> ~/.bashrc