1
0
Fork 0
mirror of synced 2024-05-26 20:11:13 -04:00
dotbot/dotbot
Eric Engstrom 6c044208fa
feat: Add prefix: 'string' option to linking when glob: true.
Allows one to store files in a directory or git-repo without the leading 
`.`, as in:

```
dotconf:
├── README.md
├── bin
│   ├── dotbot
│   ├── look
│   ├── pbfile
│   └── ...
├── dot
│   ├── bashrc
│   ├── gitconfig
│   ├── gitignore
│   ├── gorc
│   ├── login
│   ├── ...
│   ├── zshrc
│   └── zshenv
```

Can take a many-line dotbot.yml listing **each** file in `dotconf/dot`,
reducing it to five lines:

```
- link:
    ~/:
      path: dotconf/dot/*
      glob: true
      prefix: '.'
```

FIXES: #259
2021-05-27 12:07:17 -05:00
..
messenger Add --force-color option 2020-08-23 00:02:26 +01:00
plugins feat: Add prefix: 'string' option to linking when glob: true. 2021-05-27 12:07:17 -05:00
util Work around subprocess.call() issue on Windows 2020-05-01 11:52:51 -04:00
__init__.py Release 1.19.0 2021-04-06 10:54:27 -04:00
__main__.py Added support to run with python -m 2020-07-23 08:44:06 -07:00
cli.py Include git hash in version when available 2021-02-27 14:34:52 -05:00
config.py Fix compatibility with Python 3 2016-01-15 01:21:16 -05:00
context.py Make parsed CLI options available to plugins 2021-02-25 07:57:12 -05:00
dispatcher.py Make parsed CLI options available to plugins 2021-02-25 07:57:12 -05:00
plugin.py Add default options 2016-03-03 09:42:50 -05:00