From 120915647ead9e210e23926e52273a9e8bf87e6d Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Fri, 5 Mar 2021 11:03:06 +0300 Subject: README: update Closes #4. --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'README.md') diff --git a/README.md b/README.md index d324f8f..e56cb70 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,20 @@ Use it in your workflow like this: platform: x64 packages: cmake python3 + # Cygwin executables are added to PATH, so you can call them directly: + - run: | + ls.exe -Al + pwd.exe + + # Alternatively, you can use Cygwin's bash as shell to write proper bash scripts: + - run: | + basic() { + ls -Al + pwd + } + basic + shell: C:\tools\cygwin\bin\bash.exe --login --norc -eo pipefail -o igncr '{0}' + * `x64` is the default value for the `platform` parameter and can be omitted. Use `x86` if you want to install the 32-bit Cygwin. * Specify any additional packages to be installed as a space-separated list in -- cgit v1.2.3