1
0
Fork 0

Fixed a bug with upgrade and replace of foxx apps from local files. Closes #1292

This commit is contained in:
Michael Hackstein 2015-05-11 17:21:23 -07:00
parent 7758250f2b
commit 7d3ad7ee46
1 changed files with 6 additions and 0 deletions

View File

@ -367,6 +367,9 @@
[ appInfo, mount ] );
utils.validateMount(mount);
if (utils.pathRegex.test(appInfo)) {
appInfo = moveAppToServer(appInfo);
}
var res;
var req = {
appInfo: appInfo,
@ -396,6 +399,9 @@
[ "Mount path", "string" ] ],
[ appInfo, mount ] );
utils.validateMount(mount);
if (utils.pathRegex.test(appInfo)) {
appInfo = moveAppToServer(appInfo);
}
var res;
var req = {
appInfo: appInfo,