blob: 4cfed056ba565ab0707cb94099faa246262e6700 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/bash
# All relatives paths must end with slash and must not be start by dot and/or slash
# Examplo
# VAR_PATH=dir/subdir/
# Folder where posts are stored, must be relative and suffed by a slash
ARTICLES_PATH=artigos/
|