Allow the 'appid' to be specified as a system property.

This commit is contained in:
Ray Greenwell
2011-04-25 23:06:48 +00:00
parent 9ed9d93623
commit e44931a433
@@ -68,7 +68,7 @@ public class GetdownApp
}
// look for a specific app identifier
String appId = (aidx < args.size()) ? args.get(aidx++) : null;
String appId = (aidx < args.size()) ? args.get(aidx++) : System.getProperty("appid");
// pass along anything after that as app args
String[] appArgs = (aidx < args.size()) ?