Samir Alajmovic
Samir Alajmovic
Fixed now with 0.30.0
I don't understand, can you provide example configs of how you want it to work.
can't you just write it like this: mani.yaml ```yaml import: - foo/projects.yaml projects: mani: url: [email protected]:alajmo/mani.git ``` foo/projects.yaml ```yaml projects: sake: url: [email protected]:alajmo/sake.git pinto: url: [email protected]:alajmo/pinto.git ``` The imports is...
I understand, you want to fetch remote mani files, this is a bit more work to accomplish, and not sure how many users are using this setup of having remote...
You can use: ``` --omit-empty-columns omit empty columns in table output --omit-empty-rows omit empty rows in table output -o, --output string set output format [stream|table|markdown|html] ``` It only works for...
You can read the [manual here](https://manicli.com/config) or `man mani`. ``` # List of targets [optional] targets: default: # Target all projects all: false # Target current working directory project cwd:...
The YAML parser I'm using doesn't support editing unfortunately, so eventually I'll have to write one myself or use an external one that supports editing YAML files (and preserve comments,...
You can already pass in parameters now (https://manicli.com/variables): ``` mani run foo -p mani bar=hello Project | Foo ---------+----- mani | hello ``` However, what would be nice is adding...
Yes, it's wrong in the docs thanks for spotting it. Not from mani but you can do it in the cmd: ``` tasks: foo: env: bar: cmd: | if [...
That'd be a nice feature, but it needs to be implemented thoroughly since we'd be deleting files and folders from users filesystem which poses a risk. Would probably need a...