Package all applications if no arguments
When using the 'package' command, of course.master
parent
cef6150cbb
commit
566cdf5df4
|
@ -707,7 +707,12 @@ if args.command == "package":
|
||||||
|
|
||||||
pkgname = args.pkgname
|
pkgname = args.pkgname
|
||||||
|
|
||||||
# TODO app == None => package all apps
|
# If no app is given: package all apps
|
||||||
|
if args.apps == []:
|
||||||
|
log.info("Packaging all apps")
|
||||||
|
args.apps = persoconf.list_apps(logger=log)
|
||||||
|
|
||||||
|
# Some apps were specified, so we list them with their files
|
||||||
appmetas = []
|
appmetas = []
|
||||||
for app in args.apps :
|
for app in args.apps :
|
||||||
# Load app META file
|
# Load app META file
|
||||||
|
|
Loading…
Reference in New Issue