diff options
author | Elijah Lynn <elijah@elijahlynn.net> | 2018-04-05 20:51:55 +0200 |
---|---|---|
committer | scottb <dharmabumstead@users.noreply.github.com> | 2018-04-05 20:51:55 +0200 |
commit | 95d40bcd0aba162db24957cf3127e99cd8c17b7c (patch) | |
tree | b224f32366316f76ec1fea71f58f2a926260ee29 /docs/docsite | |
parent | Update role doc examples (#37844) (diff) | |
download | ansible-95d40bcd0aba162db24957cf3127e99cd8c17b7c.tar.xz ansible-95d40bcd0aba162db24957cf3127e99cd8c17b7c.zip |
Update fish setup to use `source` instead of `.` (#33207)
"The use of . is deprecated in favour of source, and . will be removed in a future version of fish."
source: https://fishshell.com/docs/current/commands.html#source
Diffstat (limited to 'docs/docsite')
-rw-r--r-- | docs/docsite/rst/installation_guide/intro_installation.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/docsite/rst/installation_guide/intro_installation.rst b/docs/docsite/rst/installation_guide/intro_installation.rst index 3bbb93f98a..38e46f00a6 100644 --- a/docs/docsite/rst/installation_guide/intro_installation.rst +++ b/docs/docsite/rst/installation_guide/intro_installation.rst @@ -330,7 +330,7 @@ Using Bash: Using Fish:: - $ . ./hacking/env-setup.fish + $ source ./hacking/env-setup.fish If you want to suppress spurious warnings/errors, use:: |