Created
February 13, 2018 17:30
-
-
Save Ephasme/cdf294375aee35c1878ecd4caf58cdf0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| import shutil | |
| from subprocess import call | |
| from glob import glob | |
| for path in glob('./**/obj', recursive=True): | |
| shutil.rmtree(path, ignore_errors=True) | |
| call('dotnet restore _Modularity.sln') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment