mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-03-15 10:32:23 +01:00
https://github.com/GothenburgBitFactory/taskwarrior/releases/tag/v3.3.0 Also edit post-install upgrade instructions for clarity.
21 lines
453 B
Bash
21 lines
453 B
Bash
#!/bin/sh
|
|
|
|
cat >&2 <<-EOF
|
|
*
|
|
* If you are upgrading from version 2, please backup your data and run
|
|
* the following command in 2.x to export data before switching to the newer
|
|
* version:
|
|
*
|
|
* task export > all-tasks.json
|
|
*
|
|
* Existing hooks should be disabled while re-importing tasks:
|
|
*
|
|
* task import rc.hooks=0 all-tasks.json
|
|
*
|
|
* For more information please refer to the TaskWarrior documentation:
|
|
* https://taskwarrior.org/docs/upgrade-3/
|
|
*
|
|
EOF
|
|
|
|
exit 0
|