2
0
mirror of https://github.com/fork-maintainers/iceraven-browser synced 2024-11-11 13:11:01 +00:00

[fenix] Fix the mklink command in README.md (https://github.com/mozilla-mobile/fenix/pull/3820)

The `mklink /d` creates a directory symbolic link. As here we need a file symbolic link, the `/d` switch must not be used.

See `mklink` documentation: https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/mklink
This commit is contained in:
Rimas Misevičius 2019-07-01 19:10:21 +03:00 committed by Colin Lee
parent 203e27818e
commit 38be7d18ba

View File

@ -51,7 +51,7 @@ ln -s ../../config/pre-push-recommended.sh .git/hooks/pre-push
``` ```
or for Windows run this command with administrative privileges: or for Windows run this command with administrative privileges:
```sh ```sh
mklink /d .git\hooks\pre-push ..\..\config\pre-push-recommended.sh mklink .git\hooks\pre-push ..\..\config\pre-push-recommended.sh
``` ```
To push without running the pre-push hook (e.g. doc updates): To push without running the pre-push hook (e.g. doc updates):