summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorDavid Lönnhager <david.l@mullvad.net>2024-11-14 10:06:47 +0100
committerDavid Lönnhager <david.l@mullvad.net>2024-11-19 08:52:14 +0100
commit1612b0f0719e47d564a7b84e16ddc30e6268c884 (patch)
tree31513c5a6f4586029d8c68e8a9cba0f4c8231f4f
parent690d3438c7ebb40e001b7da5b78ea101dc9779df (diff)
downloadmullvadvpn-1612b0f0719e47d564a7b84e16ddc30e6268c884.tar.xz
mullvadvpn-1612b0f0719e47d564a7b84e16ddc30e6268c884.zip
Fix typo in build-windows-modules.sh
-rwxr-xr-xbuild-windows-modules.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build-windows-modules.sh b/build-windows-modules.sh
index d97dc3066e..72e3648559 100755
--- a/build-windows-modules.sh
+++ b/build-windows-modules.sh
@@ -54,7 +54,7 @@ function to_win_path {
echo "$unixpath" | sed -e 's/^\///' -e 's/\//\\/g'
# if it's an absolute path, transform the drive prefix
else
- # remove the cygrdive prefix if it's there
+ # remove the cygdrive prefix if it's there
unixpath=$(echo "$unixpath" | sed -e 's/^\/cygdrive//')
echo "$unixpath" | sed -e 's/^\///' -e 's/\//\\/g' -e 's/^./\0:/'
fi