default targetBoxVersion to the maximum possible version ever

Apps that do not provide a targetBoxVersion are assumed to be
capable of running everywhere.
This commit is contained in:
Girish Ramakrishnan
2015-12-27 16:43:45 -08:00
parent a8959cbf26
commit 07e322df96

View File

@@ -54,7 +54,7 @@ function targetBoxVersion(manifest) {
if ('minBoxVersion' in manifest) return manifest.minBoxVersion;
return '0.0.1';
return '99999.99999.99999'; // compatible with the latest version
}
function pullImage(manifest, callback) {