diff --git a/client/gulpfile.js b/client/gulpfile.js index 6ffd5c5de394..7ca65e9d9363 100644 --- a/client/gulpfile.js +++ b/client/gulpfile.js @@ -121,6 +121,13 @@ function buildPlugins(callback, forceRebuild) { shell: true, } ).status === 0; + if (!skipBuild) { + // Hash exists and is outdated, triggering a rebuild. + // Stage current hash to .orig for debugging and to + // force a plugin rebuild in the event of a failure + // (i.e. -- we're committed to a new build of this plugin). + fs.renameSync(hashFilePath, `${hashFilePath}.orig`) + } } else { console.log(`No build hashfile detected for ${pluginName}, generating now.`); } diff --git a/client/src/components/History/Content/ContentItem.vue b/client/src/components/History/Content/ContentItem.vue index 2d74c56d2312..66185cca4592 100644 --- a/client/src/components/History/Content/ContentItem.vue +++ b/client/src/components/History/Content/ContentItem.vue @@ -91,7 +91,7 @@