Update libass submodule (0.9.13)
[mplayer-build.git] / clean
blob99bd7b478e765516d2cf55321296175fe05931c6
1 #!/usr/bin/env python
3 from subprocess import check_call
4 from script.helpers import GitWrapper
6 def main():
7 git = GitWrapper()
8 check_call('rm -rf build_libs ffmpeg_build build-stamp configure-stamp'.split())
9 check_call('git clean -x -d -f debian/'.split())
10 def cmd():
11 check_call('git clean -x -d -f'.split())
12 git.foreach_submodule(cmd)
14 main()