mirror of
https://github.com/iptv-org/epg
synced 2025-12-15 09:56:42 -05:00
7 lines
225 B
Bash
Executable File
7 lines
225 B
Bash
Executable File
#!/bin/sh
|
|
|
|
channels_changed="$(git diff --staged --name-only --diff-filter=ACMR -- 'sites/**/*.channels.xml' | sed 's| |\\ |g')"
|
|
|
|
if [ ! -z "$channels_changed" ]; then
|
|
npm run channels:lint -- $channels_changed
|
|
fi |