papirus-icon-theme/tools/work/prepare.sh
2018-09-03 09:40:34 +03:00

10 lines
262 B
Bash
Executable file

#!/usr/bin/env bash
#
# This script cleans and fixes SVG files using `tools/ffsvg.sh` script
set -eo pipefail
readonly SCRIPT_DIR="$(dirname "${BASH_SOURCE[0]}")"
find "$SCRIPT_DIR" -mindepth 2 -type f -name '*.svg' \
-exec "$SCRIPT_DIR/../ffsvg.sh" '{}' \;