2
0
mirror of https://github.com/xcat2/xcat-dep.git synced 2025-02-16 10:38:22 +00:00
xcat-dep/build.sh

13 lines
244 B
Bash
Raw Normal View History

2018-11-07 03:37:34 -05:00
#!/bin/bash
pkgname=$1
2018-11-07 22:17:19 -05:00
cur_path=$(dirname "$0")
2018-11-08 00:40:02 -05:00
if [ "$pkgname" ]; then
$cur_path/$pkgname/build.sh
2018-11-07 03:37:34 -05:00
exit $?
2018-11-08 00:40:02 -05:00
else
# TODO: if not specify, build all packages for xcat-dep
2018-11-07 03:37:34 -05:00
echo "Please specify package want to build"
exit 1
fi