diff --git a/scripts/git/cheatsheets b/scripts/git/cheatsheets index f126725..72f1348 100755 --- a/scripts/git/cheatsheets +++ b/scripts/git/cheatsheets @@ -12,7 +12,8 @@ init() { echo "Init $name" git clone "$source" "$path" fi - done < <(yq -r '.cheatpaths[] | [.name, .path, .source] | @tsv' "$(cheat -C | awk '{print $2}')") + # requires go-yq + done < <(yq '.cheatpaths[] | [.name, .path, .source] | @tsv' "$(cheat -C | awk '{print $2}')") echo "Finished init" }