Remove unused copy_chromedriver target

This commit is contained in:
Cheng Zhao
2015-04-08 20:16:02 +08:00
parent f5e6c62418
commit 565065ed6b
2 changed files with 0 additions and 42 deletions

View File

@@ -1,12 +0,0 @@
#!/usr/bin/env python
import os
import shutil
import stat
import sys
src = sys.argv[1]
dist = sys.argv[2]
shutil.copyfile(src, dist)
os.chmod(dist, os.stat(dist).st_mode | stat.S_IEXEC)