Skip to content

Commit

Permalink
fix: reuse getTargetDir function
Browse files Browse the repository at this point in the history
Signed-off-by: arcanist <[email protected]>
  • Loading branch information
arcanistzed committed Jul 4, 2022
1 parent bf98e41 commit b89c4db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile.dryice.js
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ function buildAce(options, callback) {
}

function extractCss(options, callback) {
var dir = BUILD_DIR + "/src" + (options.compress ? "-min" : "") + (options.noconflict ? "-noconflict" : "");
var dir = getTargetDir(options);
var filenames = fs.readdirSync(dir);
var css = "";
var images = {};
Expand Down

0 comments on commit b89c4db

Please sign in to comment.