#!/bin/bash CODENAME=$1 find _build -type f -name "*.exe" | while read -r entry; do # Exclude files ending with ppx.exe if [[ "$entry" == *ppx.exe ]]; then continue fi ./buildkite/scripts/cache/manager.sh write-to-dir "$entry" "apps/${CODENAME}" done