| #!/usr/bin/env bash | |
| set -eu -o pipefail | |
| # -e: exits if a command fails | |
| # -u: errors if an variable is referenced before being set | |
| # -o pipefail: causes a pipeline to produce a failure return code if any command errors | |
| readonly RULES_NODEJS_DIR=$(cd $(dirname "$0")/..; pwd) | |
| readonly EXAMPLES_DIR="${RULES_NODEJS_DIR}/examples" | |
| readonly EXAMPLES=$(ls -l ${EXAMPLES_DIR} | grep "^d" | awk -F" " '{print $9}') | |
| ${RULES_NODEJS_DIR}/scripts/clean_examples.sh ${EXAMPLES[@]} |