mirror of
https://github.com/xcat2/xcat-dep.git
synced 2024-11-21 17:11:45 +00:00
13 lines
244 B
Bash
Executable File
13 lines
244 B
Bash
Executable File
#!/bin/bash
|
|
|
|
pkgname=$1
|
|
cur_path=$(dirname "$0")
|
|
if [ "$pkgname" ]; then
|
|
$cur_path/$pkgname/build.sh
|
|
exit $?
|
|
else
|
|
# TODO: if not specify, build all packages for xcat-dep
|
|
echo "Please specify package want to build"
|
|
exit 1
|
|
fi
|