JcbSm / Bridge

Minecraft-Discord bridge
1 stars 5 forks source link

fix: Database is not stored in the right directory. #22

Closed JcbSm closed 9 months ago

JcbSm commented 9 months ago

On linux systems, the .db file will be created in the /plugins/ root folder, instead of /plugins/Bridge/.

Currently:

└── plugins/
    ├── Bridge/
    │   └── config.yml
    ├── Bridge\database.db
    └── Bridge-1.0.jar

Ideally:

└── plugins/
    ├── Bridge/
    │   ├── config.yml
    │   └── database.db
    └── Bridge-1.0.jar
JcbSm commented 9 months ago

May require use of File.separator

JcbSm commented 9 months ago

Fixed in #31