When 'git request-pull' fails it makes sense to remove output directory. Otherwise create-pull-request will complain that output directory already exists on the next run.
Signed-off-by: Ed Bartosh <[email protected]> --- scripts/create-pull-request | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/create-pull-request b/scripts/create-pull-request index 3f30cf1..a88f35a 100755 --- a/scripts/create-pull-request +++ b/scripts/create-pull-request @@ -229,6 +229,7 @@ else fi if [ $? -ne 0 ]; then echo "ERROR: git request-pull reported an error" + rm -rf $ODIR exit 1 fi -- 2.1.4 -- _______________________________________________ Openembedded-core mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-core
