Comparing version 0.1.1 to 0.1.2
@@ -213,4 +213,10 @@ var fs = require('fs'); | ||
this[name] = new Entry(this, { name: name, value: value }); | ||
var params = [ | ||
// Handle '(Default)' value differently | ||
var params = name === "(Default)" ? [ | ||
q(this.path), // parent's reg path | ||
'/ve', // default value flag | ||
'/d', this[name].raw, // registry formatted data | ||
'/f' | ||
] : [ | ||
q(this.path), // parent's reg path | ||
'/v', q(name), // quoted value | ||
@@ -314,2 +320,2 @@ '/t', this[name].type, // RegType | ||
} | ||
} | ||
} |
@@ -47,3 +47,3 @@ { | ||
], | ||
"version": "0.1.1" | ||
"version": "0.1.2" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
55421
1178