More tweaks to how ./runtests toc runs on Windows

This commit is contained in:
Dan Buch 2016-06-18 16:37:11 -04:00
parent d2596f4c86
commit 8cfdccbf0f
No known key found for this signature in database
GPG Key ID: FAEF12936DD3E3EC
2 changed files with 5 additions and 5 deletions

View File

@ -21,9 +21,7 @@ install:
- git clone . c:\gopath\src\gopkg.in\urfave\cli.v2 - git clone . c:\gopath\src\gopkg.in\urfave\cli.v2
- go get github.com/urfave/gfmxr/... - go get github.com/urfave/gfmxr/...
- go get -v -t ./... - go get -v -t ./...
- npm bin - if not exist node_modules\.bin\markdown-toc npm install markdown-toc
- ps: $MarkdownTocExists = Test-Path node_modules\.bin\markdown-toc
- ps: if ($MarkdownTocExists -eq $False) { cmd /c npm install markdown-toc }
build_script: build_script:
- python runtests vet - python runtests vet

View File

@ -94,8 +94,10 @@ def _migrations():
@_target @_target
def _toc(): def _toc():
npm_bindir = check_output(['npm', 'bin']).strip() _run([
_run(['node', os.path.join(npm_bindir, 'markdown-toc'), '-i', 'README.md']) 'node', os.path.join('node_modules', '.bin', 'markdown-toc'),
'-i', 'README.md'
])
_run(['git', 'diff', '--quiet']) _run(['git', 'diff', '--quiet'])