Fixes symlink broken in some situations.

master
Luka Vandervelden 2020-10-29 14:47:52 +01:00
parent 692e26e816
commit db7fddb803
1 changed files with 1 additions and 1 deletions

View File

@ -170,7 +170,7 @@ class DODB::DirectedGraph(V) < DODB::Indexer(V)
# Roughly matches Index#file_path_index, but works if @storage_root
# is an absolute path as well.
private def get_cross_index_data_symlink(node : String)
"../../../../../indices/by_#{@index.name}/#{node}.json"
"../../../../indices/by_#{@index.name}/#{node}.json"
end
end