maid icon indicating copy to clipboard operation
maid copied to clipboard

Should task execution be case-insensitive?

Open chrisdmacrae opened this issue 6 years ago • 1 comments

Right now task names are case sensitive. Worried this will cause a lot of confusion in some cases.

Consider the following maidfile:

## Example

```bash
echo "example A"
```

## example

```bash
echo "example B"
```

and I run:

maid example outputs example B

maid Example outputs example A.

chrisdmacrae avatar Jun 05 '18 23:06 chrisdmacrae

My guess is that being case-insensitive would be a better design choice to prevent confusion and case based errors.

Marak avatar Jun 05 '18 23:06 Marak