Explanation

This commit is contained in:
Søren Theilgaard
2021-11-10 16:22:28 +01:00
parent bf4e7d89ec
commit 15373a35f9
2 changed files with 6 additions and 3 deletions

View File

@@ -380,8 +380,9 @@ Depending on the application or pkg there are a few more variables you can or ne
- `CLIInstaller`: - `CLIInstaller`:
- `CLIArguments`: - `CLIArguments`:
If the downloaded dmg is actually an installer that we can call using CLI, we can use these two variables for what to call. If the downloaded dmg is actually an installer that we can call using CLI, we can use these two variables for what to call.
We need to define `name` for the installed app (to be version checked), as well as `appName` for the installer binary. So Installomator will add the path to this binary, and it will be called like this: We need to define `name` for the installed app (to be version checked), as well as `appName` for the installer binary. So Installomator will add the path to the folder of this binary, and it will be called like this:
`$CLIInstaller $CLIArguments` `$CLIInstaller $CLIArguments`
So for most installations `CLIInstaller` should contain the `appName` for the CLI call (if its the same).
We can support a whole range of other software titles by implementing this. We can support a whole range of other software titles by implementing this.
See label adobecreativeclouddesktop. See label adobecreativeclouddesktop.

View File

@@ -208,9 +208,11 @@ REOPEN="yes"
# If the downloaded dmg is actually an installer that we can call using CLI, # If the downloaded dmg is actually an installer that we can call using CLI,
# we can use these two variables for what to call. # we can use these two variables for what to call.
# We need to define `name` for the installed app (to be version checked), as well # We need to define `name` for the installed app (to be version checked), as well
# as `appName` for the installer binary. So Installomator will add the path to this # as `appName` for the installer binary. So Installomator will add the path to the
# binary, and it will be called like this: # folder of this binary, and it will be called like this:
# $CLIInstaller $CLIArguments # $CLIInstaller $CLIArguments
# So for most installations `CLIInstaller` should contain the `appName` for the CLI
# call (if its the same).
# We can support a whole range of other software titles by implementing this. # We can support a whole range of other software titles by implementing this.
# See label adobecreativeclouddesktop # See label adobecreativeclouddesktop
# #