Move degoogle.yml into dedicated yaml directory

This commit is contained in:
tycrek 2020-06-01 10:16:45 -06:00
parent 37fcd3b64b
commit b7e4ef7616
3 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ on:
branches: branches:
- master - master
paths: paths:
- degoogle.yml - yaml/*.yml
- md/*.md - md/*.md
jobs: jobs:
build: build:

View File

@ -74,7 +74,7 @@ function readFile(filename) {
* Reads degoogle.yml * Reads degoogle.yml
*/ */
function readYaml() { function readYaml() {
return YAML.parse(fs.readFileSync(path.join(__dirname, 'degoogle.yml')).toString()); return YAML.parse(fs.readFileSync(path.join(__dirname, 'yaml/degoogle.yml')).toString());
} }
/** /**