Skip to content

Commit

Permalink
b4 - fix for multi platform
Browse files Browse the repository at this point in the history
  • Loading branch information
cleidigh committed Jul 1, 2022
1 parent fde0c74 commit f1995ec
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"title": "ImportExportTools NG",
"name": "import-export-tools-ng",
"version": "12.0.0-b3",
"version": "12.0.0-b4",
"description": "Import and export next-gen tools for messages and folders",
"author": "Christopher Leidigh",
"engines": {
Expand Down
10 changes: 6 additions & 4 deletions src/chrome/content/mboximport/mboximport.js
Original file line number Diff line number Diff line change
Expand Up @@ -877,10 +877,12 @@ function exportSingleLocaleFolder(msgFolder, subfolder, keepstructure, destdirNS
console.log("copy ", newname)
} else {
console.log("no file")
let fname = destdirNSIFILE.path + "\\" + newname;
console.log(fname)
var nsifile = new FileUtils.File( fname )
nsifile.create(0, 0644)
var topdestdirNSI = destdirNSIFILE.clone();
console.log(topdestdirNSI)
topdestdirNSI.append(newname);
console.log(topdestdirNSI)
//var nsifile = new FileUtils.File( fname )
topdestdirNSI.create(0, 0644)

}
var sbd = filex.parent;
Expand Down
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "__MSG_extensionName__",
"version": "12.0.0-b3",
"version": "12.0.0-b4",
"description": "__MSG_extensionDescription__",
"author": "Christopher Leidigh",
"applications": {
Expand Down
Binary file added xpi/import-export-tools-ng-12.0.0-b4-tb.xpi
Binary file not shown.

0 comments on commit f1995ec

Please sign in to comment.