coliru

A minimal, flexible, dotfile installer
git clone https://git.ashermorgan.net/coliru/
Log | Files | Refs | README

commit 2bef1dbdb294326ef5582f04ae0b29df6360ab3b
parent 3a8fd7399c37c920671b7e2fb60341c24d522e30
Author: Asher Morgan <59518073+ashermorgan@users.noreply.github.com>
Date:   Tue, 10 Sep 2024 09:40:24 -0700

Update example manifest file

Diffstat:
MREADME.md | 2+-
Mexamples/basic/manifest.yml | 4++--
2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md @@ -80,7 +80,7 @@ steps: - src: vimrc dst: ~/.vimrc # Will create symbolic links on Linux & MacOS run: - - src: script.sh + - src: ./script.sh prefix: sh # unecessary on Unix if script.sh is executable postfix: arg1 $COLIRU_RULES tags: [ linux, macos ] diff --git a/examples/basic/manifest.yml b/examples/basic/manifest.yml @@ -23,8 +23,8 @@ steps: - src: vimrc dst: ~/.vimrc # will create symbolic links on Linux & MacOS run: - - src: script.sh - prefix: sh + - src: ./script.sh + prefix: sh # unecessary on Unix if script.sh is executable postfix: arg1 $COLIRU_RULES tags: [ linux, macos ]