diff options
-rw-r--r-- | README.md | 2 | ||||
-rwxr-xr-x | build-repo.sh | 2 | ||||
-rwxr-xr-x | xibuild | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..42f3c4f --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# xibuild +The build system to make xipkgs for xilinux diff --git a/build-repo.sh b/build-repo.sh index bf6f783..a59e7eb 100755 --- a/build-repo.sh +++ b/build-repo.sh @@ -63,7 +63,7 @@ extend-index () { COLOR="pass" fi if grep $PKG_NAME xibuild.report.log | grep -q fail; then - if [ -f $DEST ]; then + if [ -f dist/$REPO_NAME/$PKG_NAME.xipkg ]; then COLOR="warning" else COLOR="fail" @@ -47,7 +47,7 @@ xibuild () { clean () { # clean up rm -rf $PKG_BUILD_DIR - rmdir $XI_ROOT/tMp > /dev/null 2>&1 + rmdir $XI_ROOT/tmp > /dev/null 2>&1 } build () { |