Skip to content
This repository has been archived by the owner on Sep 4, 2019. It is now read-only.

Commit

Permalink
Fixed the missing fs.copySync patch
Browse files Browse the repository at this point in the history
Fixes #239

Reviewed By: James Keshavarzi <[email protected]>
  • Loading branch information
EricLeiLi authored and Nukul Bhasin committed Dec 13, 2012
1 parent c21090c commit 5dbb8d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/native-packager.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function generateTabletXMLFile(session, config) {

// If appdesc is specified, use it as the bar descriptor
if (session.appdesc) {
fs.copySync(session.appdesc, path.join(session.sourceDir, conf.BAR_DESCRIPTOR));
pkgrUtils.copyFile(session.appdesc, session.sourceDir);
return;
}

Expand Down

0 comments on commit 5dbb8d2

Please sign in to comment.