Update mplayer submodule
[mplayer-build.git] / clean
bloba81d9a6d1f17e9cb4da64f3c7ac083f9e9ceefa8
1 #!/usr/bin/env python3
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()