Update libav submodule
[mplayer-build.git] / clean
blob1f892d5bcc746dc8713eba63b02cae5ef36b3dfe
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 libav_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()