mirror of
https://github.com/morpheusthewhite/spicetify-themes.git
synced 2024-11-25 12:22:32 +01:00
13 lines
293 B
Bash
Executable File
13 lines
293 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
invalid_themes=$(find . -maxdepth 1 -type d \
|
|
! -regex "./\..*" \
|
|
! -regex "./_Extra" \
|
|
! -regex "\." \
|
|
! -regex "\./[A-Z][a-z0-9]*\(-?[A-Z][a-z0-9]*\)*")
|
|
|
|
if [[ ! -z "$invalid_themes" ]]; then
|
|
echo "Invalid theme names: $invalid_themes"
|
|
exit 1
|
|
fi
|