From abc94441deecce402e76e93399d4706d2093e55a Mon Sep 17 00:00:00 2001 From: James Groom Date: Wed, 2 Nov 2022 10:20:19 +1000 Subject: [PATCH] Adjust wording for `apt install` step in WSL guide --- docs/guides/wsl.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/guides/wsl.md b/docs/guides/wsl.md index 6ed20d7f..ca9ab351 100644 --- a/docs/guides/wsl.md +++ b/docs/guides/wsl.md @@ -83,14 +83,14 @@ For example: cd /mnt/d/libTAS would change the current directory to D:\libTAS on Windows (do pay attention to -the different pathing style). +the different pathing style). For paths with spaces, escape the spaces with a +backslash '\\' or put the whole thing in quotes. -Adjust the command to your path where you've put the .deb file and change your -current directory to it, then run +Change directory to where you've put the .deb file, then run sudo apt install ./libtas_*_amd64.deb -The `*` makes it so that it uses our .deb file regardless of its version, e.g. +The `*` is a glob, which will be filled in with the correct version, e.g. it may be named `libtas_1.4.0_d086878_amd64.deb` and it will still work. Very convenient. Potentially you will see error messages saying that there are unmet dependencies.