papirus-icon-theme/tools/work/prepare.sh
Sergei Eremenko aba9b20297 Update tools #789
convert.sh:
 * added support for Papirus-Light #789
 * remove dependency from templates

clean.sh, prepare.sh:
 * searches for SVG files recursively in subdirectories

convert.sh, put-into-theme.sh:
 * get theme names from root repo directory

new-icon.sh:
 * made similar to new-symlink.sh
2017-10-04 20:29:42 +03:00

12 lines
283 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 "$0")"
declare -a SOURCE_FILES=(
$(find "$SCRIPT_DIR" -mindepth 2 -type f -name '*.svg')
)
"$SCRIPT_DIR/../ffsvg.sh" "${SOURCE_FILES[@]}"