quickjs-tart

quickjs-based runtime for wallet-core logic
Log | Files | Refs | README | LICENSE

run.sh (175B)


      1 #! /bin/sh
      2 
      3 find . -type f -perm -100 -print | grep -v run.sh | sort | while read -r x; do
      4   echo "[$x]"
      5   if ! "$x"; then
      6     echo "*** [$x] FAILED" >&2
      7     exit 1
      8   fi
      9 done