Skip to content

Commit

Permalink
Oops
Browse files Browse the repository at this point in the history
  • Loading branch information
Jbudone committed Feb 16, 2019
1 parent 0da048a commit 8c9ef5a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions resourceBuilder.js
Original file line number Diff line number Diff line change
Expand Up @@ -762,11 +762,11 @@ let processResources = (package) => {
// Process asset if the hash has changed
// NOTE: We need to get the hash here, in case we've changed the asset somewhere along the way to here
let rebuildAsset = false,
hash = null,
distHash = null;
hash = null,
distHash = null;

// Is this asset being filtered out?
const assetFilteredOut = Settings.filterAsset !== asset.name;
const assetFilteredOut = Settings.filterAsset && (Settings.filterAsset !== asset.name);

if (!assetFilteredOut) {
if (Settings.forceRebuild) {
Expand Down

0 comments on commit 8c9ef5a

Please sign in to comment.