1234567891011121314151617181920212223 |
- from scriptCommon import catchPath
- import os
- import subprocess
- os.chdir(catchPath)
- subprocess.run('dotnet tool update -g MarkdownSnippets.Tool --version 21.2.0', shell=True, check=True)
- subprocess.run('mdsnippets', shell=True, check=True)
|