Skip to content

Commit

Permalink
Fix an issue where libraries and assets write to the same directory
Browse files Browse the repository at this point in the history
  • Loading branch information
marchermans committed Nov 4, 2023
1 parent b065819 commit 7bb419d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public abstract class ListLibraries extends DefaultRuntime {
public ListLibraries() {
super();

getLibrariesDirectory().convention(FileCacheUtils.getAssetsCacheDirectory(getProject()).map(TransformerUtils.ensureExists()));
getLibrariesDirectory().convention(FileCacheUtils.getLibrariesCacheDirectory(getProject()).map(TransformerUtils.ensureExists()));
getServerBundleFile().fileProvider(getRuntimeArguments().map(arguments -> {
if (!arguments.containsKey("bundle"))
return null;
Expand Down

0 comments on commit 7bb419d

Please sign in to comment.