File: check-format.sh

package info (click to toggle)
pcs 0.12.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 16,148 kB
  • sloc: python: 238,810; xml: 20,833; ruby: 13,203; makefile: 1,595; sh: 484
file content (7 lines) | stat: -rwxr-xr-x 153 bytes parent folder | download
1
2
3
4
5
6
7
#!/bin/sh

if make --dry-run ruff_format_check > /dev/null 2>&1; then
  make ruff_format_check
else
  echo "No 'make ruff_format_check', skipping..."
fi