ipkg-push returns zero when ipkg repository path does not exist causing make continues ignoring error.
Signed-off-by: Ladislav Michl <[email protected]> --- ipkg-push | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ipkg-push b/scripts/ipkg-push index 3f8c823..b8d5228 100755 --- a/scripts/ipkg-push +++ b/scripts/ipkg-push @@ -33,7 +33,7 @@ usage() { echo " --dist <distname> use this to make a dist release (optional)" echo " --type <package type> specify package type (default: ipkg)" echo - exit 0 + exit 1 } IPKGDIR= -- ptxdist mailing list [email protected]
