From 847a622a10eda0a5d780fe45a8496c6eab9c3cec Mon Sep 17 00:00:00 2001 From: Felix Lohmeier Date: Wed, 6 Apr 2022 13:26:22 +0200 Subject: [PATCH] update task to v3.10.0 --- README.md | 6 +++--- binder/postBuild | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 6d9c5ea..1ec0b45 100644 --- a/README.md +++ b/README.md @@ -60,19 +60,19 @@ Templates for OpenRefine batch processing (import, transform, export) using the cd openrefine-task-runner ``` -2. Install [Task 3.2.2](https://github.com/go-task/task/releases/tag/v3.2.2) +2. Install [Task 3.10.0](https://github.com/go-task/task/releases/tag/v3.10.0) a) RPM-based (Fedora, CentOS, SLES, etc.) ```sh - wget https://github.com/go-task/task/releases/download/v3.2.2/task_linux_amd64.rpm + wget https://github.com/go-task/task/releases/download/v3.10.0/task_linux_amd64.rpm sudo dnf install ./task_linux_amd64.rpm && rm task_linux_amd64.rpm ``` b) DEB-based (Debian, Ubuntu etc.) ```sh - wget https://github.com/go-task/task/releases/download/v3.2.2/task_linux_amd64.deb + wget https://github.com/go-task/task/releases/download/v3.10.0/task_linux_amd64.deb sudo apt install ./task_linux_amd64.deb && rm task_linux_amd64.deb ``` diff --git a/binder/postBuild b/binder/postBuild index 665f60b..dd94e27 100755 --- a/binder/postBuild +++ b/binder/postBuild @@ -5,7 +5,7 @@ set -e python -m bash_kernel.install # Install go-task https://github.com/go-task/task -wget -q https://github.com/go-task/task/releases/download/v3.2.2/task_linux_amd64.tar.gz +wget -q https://github.com/go-task/task/releases/download/v3.10.0/task_linux_amd64.tar.gz tar -xzf task_linux_amd64.tar.gz rm task_linux_amd64.tar.gz mkdir -p $HOME/.local/bin