diff --git a/rebar.config b/rebar.config index ead251f..fc28bcf 100644 --- a/rebar.config +++ b/rebar.config @@ -7,8 +7,6 @@ ]} ]}. -{post_hooks, [{compile, "./zompify.sh"}]}. - {xref_checks, [undefined_function_calls, undefined_functions, locals_not_used, deprecated_function_calls, deprecated_functions]}. diff --git a/zompify.sh b/zompify.sh index 3c56b80..66aca1c 100755 --- a/zompify.sh +++ b/zompify.sh @@ -2,11 +2,41 @@ set -e APP=$(basename "$PWD") + SRC="_build/default/lib/$APP" DST="$PWD/_build/zomp/lib/$APP" +IGNORE_FILE="zomp.ignore" + mkdir -p "$DST" -find "$SRC" -type l ! -exec test -e {} \; -delete -cp -aR -L "$SRC/." "$DST/" + +# Remove broken symlinks +find "$SRC" -type l ! -exec test -e {} \; -delete || true + +# Build ignore matcher +IGNORE_TEMP=$(mktemp) +trap "rm -f $IGNORE_TEMP" EXIT + +# Expand globs in zomp.ignore to patterns suitable for grep +if [ -e "$IGNORE_FILE" ]; then + grep -v '^\s*#' "$IGNORE_FILE" | sed 's#/#\\/#g' | sed 's/\./\\./g' | sed 's/\*/.*/g' > "$IGNORE_TEMP" +fi + +# Copy Git-tracked and Zomp-allowed files +git ls-files -z | while IFS= read -r -d '' file; do + # Skip if ignored + echo "$file" | grep -Eq -f "$IGNORE_TEMP" && continue + # Only copy if file exists in the build dir + if [ -e "$SRC/$file" ]; then + mkdir -p "$DST/$(dirname "$file")" + cp -a "$SRC/$file" "$DST/$file" + fi +done + +rm "$IGNORE_TEMP" + +# Copy metadata cp "$PWD/zomp.meta" "$DST/" -cp "$PWD/Emakefile" "$DST" -rm "$DST"/ebin/*.beam +cp "$PWD/Emakefile" "$DST/" + +# Clean up beam files just in case +[ -d "$DST/ebin" ] && find "$DST/ebin" -name '*.beam' -exec rm -f {} + || true