From 8004e9c943b849fba91a30b32d89b2828a05a4f3 Mon Sep 17 00:00:00 2001 From: Aseem Bajaj Date: Fri, 26 Oct 2018 16:06:33 -0700 Subject: [PATCH] Fix broken URL to installation doc The links to installation doc were broken, perhaps it was a typo or maybe installation document was relocated from "installation" directory to "installation.md". In either case, making this change fixes the problem. --- docs/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/README.md b/docs/README.md index ed06d7d1..f3a7a3b3 100644 --- a/docs/README.md +++ b/docs/README.md @@ -7,7 +7,7 @@ Since it's written in [Go][go], Task is just a single binary and has no other dependencies, which means you don't need to mess with any complicated install setups just to use a build tool. -Once [installed](installation), you just need to describe your build tasks +Once [installed](installation.md), you just need to describe your build tasks using a simple [YAML][yaml] schema in a file called `Taskfile.yml`: ```yaml @@ -27,10 +27,10 @@ guide to check the full schema documentation and Task features. ## Features -- [Easy installation](installation): just download a single binary, add to +- [Easy installation](installation.md): just download a single binary, add to $PATH and you're done! Or you can also install using [Homebrew][homebrew] or [Snapcraft][snapcraft] if you want; -- Available on CIs: by adding [this simple command](installation#install-script) +- Available on CIs: by adding [this simple command](installation.md#install-script) to install on your CI script and you're done to use Task as part of your CI pipeline; - Truly cross-platform: while most build tools only work well on Linux or macOS, Task also supports Windows thanks to [this awesome shell interpreter for Go][sh];