We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 748f180 commit f0bf52dCopy full SHA for f0bf52d
1 file changed
lib/pbxFile.js
@@ -128,9 +128,11 @@ function pbxFile(filepath, opt) {
128
if (opt.explicitFileType) {
129
this.explicitFileType = opt.explicitFileType;
130
this.basename = this.basename + '.' + defaultExtension(this);
131
- delete this.path;
+ // dont delete path as it is used after
132
+ // delete this.path;
133
delete this.lastKnownFileType;
- delete this.group;
134
+ // dont delete group as it is used after
135
+ // delete this.group;
136
delete this.defaultEncoding;
137
}
138
@@ -155,4 +157,4 @@ function pbxFile(filepath, opt) {
155
157
156
158
159
-module.exports = pbxFile;
160
+module.exports = pbxFile;
0 commit comments