blob: a01d0b4f638a563a0e1f9cf9d6918643b14470b1 (
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"
}
|