faq How to install all PadoGrid online bundles with a single command - padogrid/padogrid GitHub Wiki

How to install all online bundles with a single command?

PadoGrid v0.9.19 introduced install_bundle -all for installing all online bundles. This command installs each bundle as a workspace in the current RWE. If a workspace already exists, then this command outputs an error message and does not install the bundle.

To download and install all bundles (git disabled)

# Download and install with product version validation
install_bundle -all -download -workspace

# Download and install without product version validiation
install_bundle -all -download -workspace -force

To checkout and install all bundles (git enabled)

# Checkout and install with product version validation
install_bundle -all -checkout

# Checkout and insatll wihout product version validation
install_bundle -all -checkout -force

The -force option installs all bundles regardless of whether the current RWE has the required product versions. Without this option, bundles that do not match the required product versions will not be installed.