10 lines
216 B
Bash
Executable File
10 lines
216 B
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
|
|
REPO_ROOT="$(git rev-parse --show-toplevel)"
|
|
cd "$REPO_ROOT"
|
|
|
|
if ! git diff --cached --quiet -- packages viewer skills plugins/cad/skills scripts/bundle; then
|
|
scripts/bundle/bundle.sh --check
|
|
fi
|