blob: a8745f00c7cf6285dbd25120e6cf241dd2c26eb7 (
plain)
1
2
3
4
5
6
7
8
|
post_install() {
echo '>>> The semaphore-cli binary is installed as /bin/semaphoreci,'
echo '>>> not /bin/sem, which would conflict with parallel.'
}
post_upgrade() {
post_install $1
}
|