This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -euo pipefail | |
# # INPUT | |
# The playbook (YAML file) you want to patch" | |
playbook="${1}" | |
# URL of the Git repository that contains the content source under test; | |
# typically, this will be the HTTPS clone URL of that repository: | |
repo_under_test="${2}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[env] | |
LOCAL_FISH_COMPLETION_DIR = "{{config_root}}/.config/fish/completions" | |
[hooks] | |
postinstall = 'mkdir -p "$LOCAL_FISH_COMPLETION_DIR"' | |
[tasks.install-local-completions] | |
description = 'Install shell completions into project directory' | |
hide = true | |
run = ''' |
OlderNewer