Skip to content

Commit 9be1689

Browse files
authored
Merge pull request #21811 from peppy/add-hard-link-faq
Add link to hard link explanation wiki page
2 parents 42c1d41 + 61029b1 commit 9be1689

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

osu.Game/Overlays/FirstRunSetup/ScreenImportFromStable.cs

+4-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
using osu.Game.Graphics.Containers;
2323
using osu.Game.Graphics.UserInterfaceV2;
2424
using osu.Game.Localisation;
25+
using osu.Game.Online.Chat;
2526
using osu.Game.Overlays.Settings;
2627
using osu.Game.Overlays.Settings.Sections.Maintenance;
2728
using osu.Game.Screens.Edit.Setup;
@@ -127,7 +128,9 @@ private void updateStablePath()
127128
if (available)
128129
{
129130
copyInformation.Text =
130-
"Data migration will use \"hard links\". No extra disk space will be used, and you can delete either data folder at any point without affecting the other installation.";
131+
"Data migration will use \"hard links\". No extra disk space will be used, and you can delete either data folder at any point without affecting the other installation. ";
132+
133+
copyInformation.AddLink("Learn more about how \"hard links\" work", LinkAction.OpenWiki, @"Client/Release_stream/Lazer/File_storage#via-hard-links");
131134
}
132135
else if (RuntimeInfo.OS != RuntimeInfo.Platform.Windows)
133136
copyInformation.Text = "Lightweight linking of files is not supported on your operating system yet, so a copy of all files will be made during import.";

0 commit comments

Comments
 (0)