VGF Updater Tool
After you have built the VGF Library, a vgf_updater binary is produced as an artifact. The vgf_updater binary is a tool used to produce an up-to-date version of a given outdated VGF file.
An example usage of vgf_updater is the following:
vgf_updater -i input.vgf -o output.vgf
This writes a new VGF file to output.vgf if the given input.vgf file is valid and outdated. If input.vgf is already at the latest version then the tool prints the current version and exits without writing the output file.
For more information the help output can be consulted:
vgf_updater --help
Usage: ./vgf_updater [--help] [--version] --input VAR --output VAR
Optional arguments:
-h, --help shows help message and exits
-v, --version prints version information and exits
-i, --input The VGF input file to convert [required]
-o, --output Path to updated VGF file [required]