Skip to content

main/duplicity: fix shebang, upgrade to 0.8.12.1612

Keith Maxwell requested to merge maxwell-k/aports:duplicity into master

Before this change:

$ dabuild sh
$ sudo apk add duplicity >/dev/null && duplicity --version
env: can't execute 'python': No such file or directory
$ head -n 1 /usr/bin/duplicity
#!/usr/bin/env python

After this change:

$ dabuild sh
$ sudo apk add duplicity >/dev/null && duplicity --version
duplicity 0.8.12
$ head -n 1 /usr/bin/duplicity
#!/usr/bin/env python3

Merge request reports