Giter Site home page Giter Site logo

Comments (2)

pml-lang avatar pml-lang commented on June 19, 2024

The root directory for config data is determined by function userConfigDirectory in DirectoryConfig.java.

Here are the relevant Java statements:

} else if ( OSName.isUnixOS() ) {
    path = System.getenv ( "XDG_CONFIG_HOME" );
    if ( path == null ) {
        path = OSDirectories.USER_HOME_DIRECTORY + "/.config";
    }

As can be seen: The config root directory is retrieved from the OS environment variable XDG_CONFIG_HOME. If this variable is not defined then OSDirectories.USER_HOME_DIRECTORY + "/.config" is used. OSDirectories.USER_HOME_DIRECTORY is defined as follows:

USER_HOME_DIRECTORY = Path.of ( System.getProperty ( "user.home" ) );

It seems that inside your container context:

  • XDG_CONFIG_HOME is not defined
  • System.getProperty ( "user.home" ) returns ?

... which is the reason why the path evaluates to ?/.config.

Hence I suggest to explicitly specify the config root directory by defining OS environment variable XDG_CONFIG_HOME in your Docker config file.

Please let me know if this solves your problem.

PS: To avoid this situation in the future, all functions in DirectoryConfig.java using OSDirectories.USER_HOME_DIRECTORY (i.e. System.getProperty ( "user.home" )) should check this value. If it is ?, then there should be a helpful message displayed in the terminal, so that the user knows how to solve the problem.

from pml-companion.

pml-lang avatar pml-lang commented on June 19, 2024

all functions OSDirectories.USER_HOME_DIRECTORY (i.e. System.getProperty ( "user.home" )) should check this value. If it is ?, then there should be a helpful message

Fixed in version 4.0.0.

from pml-companion.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.