diff options
author | davidovski <david@davidovski.xyz> | 2022-02-13 11:52:07 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-02-13 11:52:07 +0000 |
commit | 1edf198072c1b3c649565d4ac002cbf08744a192 (patch) | |
tree | 69201992d1e1624ff1527a0eb8adcff33967bdc8 | |
parent | b8bbfb6a5bc9cb2b89d16ce67c3399496f5fbb07 (diff) |
fixed calling build from the makefile
-rwxr-xr-x | xibuild/build_package.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xibuild/build_package.sh b/xibuild/build_package.sh index 9b8628e..ddbc348 100755 --- a/xibuild/build_package.sh +++ b/xibuild/build_package.sh @@ -193,7 +193,7 @@ package_dest () { # build the package # -build () { +build_pkg () { local log_file="$XIB_EXPORT/repo/$REPO/$NAME.log" printf "${BLUE}${TABCHAR}prepare " @@ -231,5 +231,5 @@ build () { # import all of the functions and constants in the build file, so we know what to do source $BUILDFILE -package_exists || build +package_exists || build_pkg |