mirror of
https://github.com/containers/podman.git
synced 2025-08-14 02:41:34 +08:00
23 lines
296 B
Bash
Executable File
23 lines
296 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
source $(dirname $0)/lib.sh
|
|
|
|
req_env_var GOSRC
|
|
|
|
cd "$GOSRC"
|
|
make install.tools
|
|
make localunit
|
|
|
|
case "$SPECIALMODE" in
|
|
in_podman) ;&
|
|
bindings) ;&
|
|
rootless) ;&
|
|
none)
|
|
make
|
|
;;
|
|
*)
|
|
die 109 "Unsupported \$SPECIAL_MODE: $SPECIALMODE"
|
|
esac
|