Update-Installer/tools/config-template.js
Robert Knight 48084cfdb2 Special handling for the updater binary in the package creation script.
The updater binary is listed as a package on its own but is not
compressed.  The program downloading the update can then download
all packages for the new version including the updater executable
'package' (in reality, just the plain file) and then invoke that updater.

This also allows for substitution of the updater binary with a different
version via the -u parameter.
2011-09-01 17:37:50 +01:00

16 lines
348 B
JavaScript

{
"packages" : {
// a single package which contains all files for the application
"app" : [
".*"
],
},
// the name of the updater binary - this will be listed as
// a dependency of the update process
"updater-binary" : "updater",
// the name of the main binary to launch when the
// application starts
"main-binary" : "myapp"
}