This repository was archived by the owner on Nov 5, 2019. It is now read-only.
File tree 2 files changed +2
-10
lines changed
src/org/openqa/selenium/buck
2 files changed +2
-10
lines changed Original file line number Diff line number Diff line change @@ -59,10 +59,7 @@ protected Folder(
59
59
super (target , filesystem , ruleFinder , Folder .class );
60
60
61
61
this .folderName = Preconditions .checkNotNull (folderName );
62
- this .output = new OutputPath (BuildTargets .getGenPath (
63
- getProjectFilesystem (),
64
- target ,
65
- String .format ("%s/%%s.src.zip" , target .getShortName ())));
62
+ this .output = new OutputPath (String .format ("%s.src.zip" , target .getShortName ()));
66
63
this .srcs = srcs .stream ().map (InputPath ::new ).collect (MoreCollectors .toImmutableSortedSet ());
67
64
}
68
65
Original file line number Diff line number Diff line change @@ -76,12 +76,7 @@ public Xpi(
76
76
this .resources = resources .stream ().map (InputPath ::new ).collect (MoreCollectors .toImmutableSortedSet ());
77
77
this .platforms = platforms .stream ().map (InputPath ::new ).collect (MoreCollectors .toImmutableSortedSet ());
78
78
79
- this .output = new OutputPath (BuildTargets .getGenPath (
80
- getProjectFilesystem (),
81
- getBuildTarget (),
82
- String .format ("%%s/%s.xpi" , getBuildTarget ().getShortName ())));
83
-
84
-
79
+ this .output = new OutputPath (String .format ("%s.xpi" , getBuildTarget ().getShortName ()));
85
80
}
86
81
87
82
@ Override
You can’t perform that action at this time.
0 commit comments