private File getInstallDir()

in plugin/src/main/java/com/attachme/plugin/AttachmeInstaller.java [76:80]


  private File getInstallDir() {
    String home = Objects.requireNonNull(System.getProperty("user.home"), "user.home variable is not set");
    String location = home + "/.attachme/";
    return new File(location);
  }