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:
parent
203e27818e
commit
38be7d18ba
@ -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):
|
||||||
|
Loading…
Reference in New Issue
Block a user