summarylogtreecommitdiffstats
path: root/install
blob: 7e4e45b7a97ce352710f00b127b87094a77e2c47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env sh

post_install() {
    echo ""
    echo "### saml2aws ${1}"
    echo ""
    echo "Starting with v2.36.5, saml2aws no longer installs the necessary Playwright"
    echo "driver automatically when using 'Browser' as Provider."
    echo ""
    echo "Please run 'saml2aws login --download-browser-driver' at least once per update"
    echo "to fetch the necessary Playwright version when using the 'Browser' provider."
    echo ""
    echo "For more information, see: https://github.com/Versent/saml2aws/pull/1006"
    echo ""
}

post_upgrade() {
  post_install "$@"
}