Skip to content

Commit de59507

Browse files
committed
Fix the build
1 parent ba13dc3 commit de59507

File tree

2 files changed

+2
-2
lines changed
  • java
    • client/src/org/openqa/selenium
    • server/src/org/openqa/grid/selenium

2 files changed

+2
-2
lines changed

java/client/src/org/openqa/selenium/BUCK

+1-1
Original file line numberDiff line numberDiff line change
@@ -243,6 +243,6 @@ zip_file(
243243
genrule(
244244
name = 'client-libs',
245245
out = 'libs-sources.jar',
246-
cmd = 'mkdir libs && python -c "import sys,shutil;map(lambda f:shutil.copy(f,\'libs\'),[l for l in open(sys.argv[1][1:]).read().split(\';\' if sys.platform.startswith(\'win\') else \':\') if l.endswith(\'.jar\') and \'third_party/java\' in l.replace(\'\\\\\',\'/\')])" $(@classpath :client-combined) && jar cMf $OUT libs/*',
246+
cmd = 'mkdir libs && python -c "import sys,shutil;map(lambda f:shutil.copy(f,\'libs\'),[l for l in open(sys.argv[1][1:]).read().split(\';\' if sys.platform.startswith(\'win\') else \':\') if l.endswith(\'.jar\') and \'third_party/java\' in l.replace(\'\\\\\'\',\'/\')])" $(@classpath :client-combined) && jar cMf $OUT libs/*',
247247
)
248248

java/server/src/org/openqa/grid/selenium/BUCK

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,5 +91,5 @@ zip_file(
9191
genrule(
9292
name = 'server-libs',
9393
out = 'server-libs-sources.jar',
94-
cmd = 'mkdir libs && python -c "import sys,shutil;map(lambda f:shutil.copy(f,\'libs\'),[l for l in open(sys.argv[1][1:]).read().split(\';\' if sys.platform.startswith(\'win\') else \':\') if l.endswith(\'.jar\') and \'third_party/java\' in l.replace(\'\\\\\',\'/\')])" $(@classpath :selenium) && jar cMf $OUT libs/*',
94+
cmd = 'mkdir libs && python -c "import sys,shutil;map(lambda f:shutil.copy(f,\'libs\'),[l for l in open(sys.argv[1][1:]).read().split(\';\' if sys.platform.startswith(\'win\') else \':\') if l.endswith(\'.jar\') and \'third_party/java\' in l.replace(\'\\\\\'\',\'/\')])" $(@classpath :selenium) && jar cMf $OUT libs/*',
9595
)

0 commit comments

Comments
 (0)