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

Commit

Permalink
📝 Issue #1220: [Question] the hook setting seem not work
Browse files Browse the repository at this point in the history
  • Loading branch information
macdonst committed Apr 3, 2017
1 parent 630907c commit 4ef137e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions docs/INSTALLATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,16 @@ var path = require('path');
// no need to configure below
var rootdir = process.argv[2];

// Create res/raw directory so that copy does not fail.
fs.mkdir('platforms/android/res/raw/',0777, function(err) {
if(err) {
console.error(err);
}
else {
console.log("the directory create success");
}
});

filestocopy.forEach(function(obj) {
Object.keys(obj).forEach(function(key) {
var val = obj[key];
Expand Down

0 comments on commit 4ef137e

Please sign in to comment.