blob: b2802165b33938d7bb303eb567ade17e85cf1963 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001#!/bin/sh
2
3case "$1" in
4 *-src)
5 ;;
6 python3-certifi)
7 BUNDLE=$(python3 -m certifi) || {
8 echo "Failed to run the certfi module script. Exit status=$?." >&2
9 echo "Output='$BUNDLE'" >&2
10 exit 1
11 }
12 ls -l "$BUNDLE"
13 ;;
14 *)
15 echo "Unexpected package '$1'" >&2
16 exit 1
17 ;;
18esac