Bash powered backuping tool
Go to file
2022-07-20 19:46:38 +03:00
docs feat: Add variable name_suffix; Pass shellcheck; Discard useless variables from main script 2022-06-29 21:27:35 +03:00
src feat: Update optval() 2022-07-20 19:46:38 +03:00
tests feat: Test empty port in URI 2022-05-22 01:14:17 +03:00
.gitignore feat: Minor chnages 2022-06-07 23:39:45 +03:00
COPYING init 2022-05-14 00:20:02 +03:00
Makefile feat: Add variable name_suffix; Pass shellcheck; Discard useless variables from main script 2022-06-29 21:27:35 +03:00
README.md feat: Update README 2022-06-30 11:35:31 +03:00

Boring Backup

Bash powered backup tool.

Testing

BB uses amazing test suite: https://bats-core.readthedocs.io/

Install Bats:

git clone https://github.com/bats-core/bats-core.git
bash bats-core/install.sh ~/.local

Add some Bats extensions:

git clone https://github.com/bats-core/bats-assert.git tests/helpers/bats-assert
git clone https://github.com/bats-core/bats-support.git tests/helpers/bats-support

Run tests:

make tests

Linting

Run shellcheck:

make lint

Building

Build docs (manpage and HTML):

make docs