generator-easy-ui5 3.1.4 → 3.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/generators/app/index.js +1 -1
- package/package.json +1 -1
package/generators/app/index.js
CHANGED
|
@@ -244,7 +244,7 @@ module.exports = class extends Generator {
|
|
|
244
244
|
);
|
|
245
245
|
const shaMarker = path.join(generatorPath, `.${commitSHA}`);
|
|
246
246
|
|
|
247
|
-
if (fs.existsSync(generatorPath) && this.options.skipUpdate) {
|
|
247
|
+
if (fs.existsSync(generatorPath) && !this.options.skipUpdate) {
|
|
248
248
|
// check if the SHA marker exists to know whether the generator is up-to-date or not
|
|
249
249
|
if (!fs.existsSync(shaMarker)) {
|
|
250
250
|
if (this.options.verbose) {
|