Skip to content

Instantly share code, notes, and snippets.

@Ephasme
Created February 13, 2018 17:30
Show Gist options
  • Select an option

  • Save Ephasme/cdf294375aee35c1878ecd4caf58cdf0 to your computer and use it in GitHub Desktop.

Select an option

Save Ephasme/cdf294375aee35c1878ecd4caf58cdf0 to your computer and use it in GitHub Desktop.
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