2
0
mirror of https://github.com/xcat2/xcat-dep.git synced 2024-11-22 01:21:44 +00:00
xcat-dep/build.sh

12 lines
219 B
Bash
Raw Normal View History

2018-11-07 08:37:34 +00:00
#!/bin/bash
pkgname=$1
2018-11-08 03:17:19 +00:00
cur_path=$(dirname "$0")
2018-11-07 08:37:34 +00:00
if [ "$pkgname" = "ipmitool" ]; then
$cur_path/ipmitool/build.sh
exit $?
elif [ -z $pkgname ]; then
echo "Please specify package want to build"
exit 1
fi