You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by ra...@apache.org on 2020/03/03 11:04:52 UTC

[openwhisk-release] branch master updated: exclude wskdebug.js from executable check to support new openwhisk-wskdebug repo (#330)

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

rabbah pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openwhisk-release.git


The following commit(s) were added to refs/heads/master by this push:
     new 35e6ae7  exclude wskdebug.js from executable check to support new openwhisk-wskdebug repo (#330)
35e6ae7 is described below

commit 35e6ae719b29aae02c7833cefe628ad638e07390
Author: Alexander Klimetschek <al...@klimetschek.de>
AuthorDate: Tue Mar 3 03:04:44 2020 -0800

    exclude wskdebug.js from executable check to support new openwhisk-wskdebug repo (#330)
---
 tools/rcverify.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/rcverify.sh b/tools/rcverify.sh
index bf00dab..d392a87 100755
--- a/tools/rcverify.sh
+++ b/tools/rcverify.sh
@@ -191,7 +191,7 @@ SC=$(eval $CMD >& /dev/null)
 validate $? 0 "$CMD"
 
 printf "scanning for executable files..."
-EXE=$(find "$DIR/$BASE" -type f ! -name "*.sh" ! -name "*.sh" ! -name "*.py" ! -name "*.php" ! -name "gradlew" ! -name "gradlew.bat" ! -name "exec" ! -name "wskadmin" ! -path "*/bin/*" -perm -001)
+EXE=$(find "$DIR/$BASE" -type f ! -name "*.sh" ! -name "*.sh" ! -name "*.py" ! -name "*.php" ! -name "gradlew" ! -name "gradlew.bat" ! -name "exec" ! -name "wskadmin" ! -name "wskdebug.js" ! -path "*/bin/*" -perm -001)
 validate "$EXE" "" "$EXE"
 
 printf "scanning for unexpected file types..."