Repository: cordova-ios Updated Branches: refs/heads/master 7bce4eced -> 6aed58bca
CB-12377: Fix bug with updating platform This closes #291 Project: http://git-wip-us.apache.org/repos/asf/cordova-ios/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-ios/commit/6aed58bc Tree: http://git-wip-us.apache.org/repos/asf/cordova-ios/tree/6aed58bc Diff: http://git-wip-us.apache.org/repos/asf/cordova-ios/diff/6aed58bc Branch: refs/heads/master Commit: 6aed58bcadb877cd31636b432a02fbf3a4547a4a Parents: 7bce4ec Author: Nikita Matrosov <[email protected]> Authored: Tue Feb 28 13:36:01 2017 +0300 Committer: Shazron Abdullah <[email protected]> Committed: Thu Mar 2 11:54:22 2017 -0800 ---------------------------------------------------------------------- bin/lib/create.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-ios/blob/6aed58bc/bin/lib/create.js ---------------------------------------------------------------------- diff --git a/bin/lib/create.js b/bin/lib/create.js index d62a44c..effa0d8 100755 --- a/bin/lib/create.js +++ b/bin/lib/create.js @@ -122,7 +122,7 @@ function copyTemplateFiles(project_path, project_name, project_template_dir, pac shell.cp('-rf', path.join(project_template_dir, '__TEMP__.xcodeproj'), project_path); shell.mv('-f', path.join(project_path, '__TEMP__.xcodeproj'), path.join(r+'.xcodeproj')); - shell.rm('-rf', path.join(project_path, project_name+'.xcodeworkspace')); + shell.rm('-rf', path.join(project_path, project_name+'.xcworkspace')); shell.cp('-rf', path.join(project_template_dir, '__TEMP__.xcworkspace'), project_path); shell.mv('-f', path.join(project_path, '__TEMP__.xcworkspace'), path.join(r+'.xcworkspace')); shell.mv('-f', path.join(r+'.xcworkspace', 'xcshareddata', 'xcschemes', '__PROJECT_NAME__.xcscheme'), path.join(r+'.xcworkspace', 'xcshareddata', 'xcschemes', project_name+'.xcscheme')); --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
