[deploy] Only print remote path when installing only.

This commit is contained in:
Eloy Durán
2013-10-31 16:25:59 +01:00
parent 5a16a52ad2
commit 96b3b43c3f

View File

@@ -290,7 +290,9 @@ install_application(am_device_t dev)
}
LOG("package has been successfully installed on device");
printf("%s\n", [remote_app_path(dev) UTF8String]);
if (getenv("install_only") != NULL) {
printf("%s\n", [remote_app_path(dev) UTF8String]);
}
[handle release];
}