Skip to content

Commit

Permalink
Fix generated file target
Browse files Browse the repository at this point in the history
  • Loading branch information
caalador committed Jul 1, 2021
1 parent dcfecaf commit ba76f83
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public class ComponentThemeLiveReloadIT extends ChromeBrowserTest {
+ CURRENT_THEME + "/";
private static final String PARENT_THEME_FOLDER = THEMES_FOLDER
+ PARENT_THEME + "/";
private static final String THEME_GENERATED_PATTERN = "%s.generated.js";
private static final String THEME_GENERATED_PATTERN = "frontend/generated/%s.generated.js";
private static final String COMPONENT_STYLE_SHEET = "components/vaadin-text-field.css";

private File currentThemeComponentCSSFile;
Expand All @@ -71,13 +71,13 @@ public void init() {
final File currentThemeFolder = new File(baseDir, CURRENT_THEME_FOLDER);
currentThemeComponentCSSFile = new File(currentThemeFolder,
COMPONENT_STYLE_SHEET);
currentThemeGeneratedFile = new File(currentThemeFolder,
currentThemeGeneratedFile = new File(baseDir,
String.format(THEME_GENERATED_PATTERN, CURRENT_THEME));

final File parentThemeFolder = new File(baseDir, PARENT_THEME_FOLDER);
parentThemeComponentCSSFile = new File(parentThemeFolder,
COMPONENT_STYLE_SHEET);
parentThemeGeneratedFile = new File(parentThemeFolder,
parentThemeGeneratedFile = new File(baseDir,
String.format(THEME_GENERATED_PATTERN, PARENT_THEME));
}

Expand Down

0 comments on commit ba76f83

Please sign in to comment.