mirror of
https://github.com/tektoncd/catalog.git
synced 2024-11-25 06:17:50 +00:00
73b9b12e53
We were previously using the outdated git_clone version 0.1 in the add_git_clone_task function. So let's introduce a more generic function : ``` add_task ${task} ${version} ``` if version is 'latest' it will always install the latest version of the task. Change all pre-apply-task-hook to use that function instead. Signed-off-by: Chmouel Boudjnah <chmouel@redhat.com>
5 lines
55 B
Bash
Executable File
5 lines
55 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Add git-clone
|
|
add_task git-clone latest
|