File: clean.ps1

package info (click to toggle)
python-dcos 0.2.0-10
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,440 kB
  • sloc: python: 8,196; sh: 194; makefile: 36
file content (5 lines) | stat: -rw-r--r-- 328 bytes parent folder | download | duplicates (8)
1
2
3
4
5
$BaseDir = (Get-Location).Path
Remove-Item $BASEDIR\env -Recurse -Force -erroraction 'silentlycontinue'
Remove-Item $BASEDIR\dist -Recurse -Force -erroraction 'silentlycontinue'
Remove-Item $BASEDIR\build -Recurse -Force -erroraction 'silentlycontinue'
Get-ChildItem -Path $BaseDir -Filter *.pyc -Recurse | Remove-Item -Force