You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by ac...@apache.org on 2022/04/09 00:01:03 UTC

[incubator-nuttx] branch master updated: tools/checkrelease.sh: Don't check DISCLAIMER-WIP anymore

This is an automated email from the ASF dual-hosted git repository.

acassis pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git


The following commit(s) were added to refs/heads/master by this push:
     new 074beff551 tools/checkrelease.sh: Don't check DISCLAIMER-WIP anymore
074beff551 is described below

commit 074beff551c8093a88de925e42545f2e8e8100c4
Author: Xiang Xiao <xi...@xiaomi.com>
AuthorDate: Wed Apr 6 23:17:34 2022 +0800

    tools/checkrelease.sh: Don't check DISCLAIMER-WIP anymore
    
    since all license is clean up now
    
    Signed-off-by: Xiang Xiao <xi...@xiaomi.com>
---
 tools/checkrelease.sh | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/tools/checkrelease.sh b/tools/checkrelease.sh
index 23352121ac..3299c51270 100755
--- a/tools/checkrelease.sh
+++ b/tools/checkrelease.sh
@@ -103,10 +103,6 @@ function check_required_files() {
       echo " - README.md file not present."
       MISSING_FILE=1
     fi
-    if [ ! -f "$RELEASE_DIR/DISCLAIMER-WIP" ]; then
-      echo " - DISCLAIMER-WIP file not present."
-      MISSING_FILE=1
-    fi
     if [ 0 -eq $MISSING_FILE ]; then
       echo " OK: all required files exist in $RELEASE_DIR."
     else