blob: a7f38546a5009ad6ebbd910e199fee728628f1ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
_silentdragon_install='NOTE: This wallet requires either the hush3 or the hush3-bin
AUR package which contains the needed sapling files for operation.
Please install hush3 or hush3-bin or this package will not function correctly.'
post_install()
{
echo "$_silentdragon_install"
}
post_upgrade()
{
echo "$_silentdragon_install"
}
|