commit | 6077b39ae55ace52786b8db4f6b09caaffba0da8 | [log] [tgz] |
---|---|---|
author | Alexander Afanasyev <alexander.afanasyev@ucla.edu> | Thu Dec 11 22:56:23 2014 -0800 |
committer | Alexander Afanasyev <alexander.afanasyev@ucla.edu> | Sun Dec 14 15:05:45 2014 -0800 |
tree | 560b5e060eef79b47826b39e224a43cdd302d1f0 | |
parent | 27be0b0d41235609bee703f4f2ef9e5b1978fdce [diff] [blame] |
build+ci: Fixing compilation and CI scripts Change-Id: If3c5fe06f19b5aaddc1ee8c7b73b2b3de4c45892 Refs: #2288
diff --git a/.jenkins b/.jenkins index afc4699..674d751 100755 --- a/.jenkins +++ b/.jenkins
@@ -3,7 +3,8 @@ DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd ) -for i in $( find "$DIR/.jenkins.d" -type f -perm +111 | sort ); do - echo "Run: $i" - "$i" +for file in "$DIR"/.jenkins.d/*; do + [[ -f $file && -x $file ]] || continue + echo "Run: $file" + "$file" done