Skip to content

Commit

Permalink
Changed name of the web hooks directory from 'web_hooks' to 'ul_web_h…
Browse files Browse the repository at this point in the history
…ooks'
  • Loading branch information
nikDemyankov committed Sep 16, 2015
1 parent 8792439 commit d232060
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions hooks/lib/android/webSiteHook.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ https://developer.android.com/training/app-indexing/enabling-app-indexing.html
* @return {String} data from the template file
*/
function readTemplate(projectRoot) {
var filePath = path.join(projectRoot, 'plugins', 'cordova-universal-links-plugin', 'web_hooks', 'android_web_hook_tpl.html'),
var filePath = path.join(projectRoot, 'plugins', 'cordova-universal-links-plugin', 'ul_web_hooks', 'android_web_hook_tpl.html'),
tplData = null;

try {
Expand Down Expand Up @@ -127,7 +127,7 @@ https://developer.android.com/training/app-indexing/enabling-app-indexing.html
* @return {boolean} true - if data was saved; otherwise - false;
*/
function saveWebHook(projectRoot, hookContent) {
var dirPath = path.join(projectRoot, 'web_hooks', 'android'),
var dirPath = path.join(projectRoot, 'ul_web_hooks', 'android'),
filePath = path.join(dirPath, WEB_HOOK_FILE_NAME),
isSaved = true;

Expand Down
2 changes: 1 addition & 1 deletion hooks/lib/ios/appleAppSiteAssociationFile.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ TODO: cleanup!
}

function getWebHookDirectory() {
return path.join(getProjectRoot(), 'web_hooks', 'ios');
return path.join(getProjectRoot(), 'ul_web_hooks', 'ios');
}

function getProjectRoot() {
Expand Down
File renamed without changes.

0 comments on commit d232060

Please sign in to comment.