You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The cache dir option will override the directory the downloaded artifacts are placed in. By default, artifacts are placed in the current working directory. The program parameter --cache-dir or the manifest entry cacheDir can be specified to override this.
If the cache dir parameter starts with the magical string USERLIB/ this string will be replaced with an OS specific path. Consider the following parameter value:
fxlauncher.jar --cache-dir=USERLIB/MyApp
The result will be:
OS
Location
Windows
~/AppData/MyApp
Mac
~/Library/Application Support/MyApp
Linux
~/.MyApp
This feature can be helpful in several circumstances:
If the application is installed in a placed where the user does not have write access
If there is a problem with configuring the current working directory, as seen with some Mac Java Version
To cache commonly used library files amongst several installed apps
The program parameter will override any configured value in the manifest, and the default will still be "the current working directory".
The text was updated successfully, but these errors were encountered:
The cache dir option will override the directory the downloaded artifacts are placed in. By default, artifacts are placed in the current working directory. The program parameter
--cache-dir
or the manifest entrycacheDir
can be specified to override this.If the cache dir parameter starts with the magical string
USERLIB/
this string will be replaced with an OS specific path. Consider the following parameter value:The result will be:
This feature can be helpful in several circumstances:
The program parameter will override any configured value in the manifest, and the default will still be "the current working directory".
The text was updated successfully, but these errors were encountered: