Skip to content

Instantly share code, notes, and snippets.

@ThexXTURBOXx
Created August 16, 2016 00:49
Show Gist options
  • Save ThexXTURBOXx/a0973d1cd4ac04697967c95f0a547943 to your computer and use it in GitHub Desktop.
Save ThexXTURBOXx/a0973d1cd4ac04697967c95f0a547943 to your computer and use it in GitHub Desktop.
FROM:
public Path getSlugFile(ManagedPlugin plugin) {
return this.managedPluginsFolder.resolve(plugin.getSlug());
}
TO:
public Path getSlugFile(ManagedPlugin plugin) {
return this.managedPluginsFolder.resolve(plugin.getSlug().replace(":", "&"));
}
I know, the string is not the right one then, but it fixes the error, so everything is ok
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment