mirror of
https://github.com/Dasharo/ec.git
synced 2026-03-06 14:50:51 -08:00
8 lines
146 B
Bash
8 lines
146 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
# SPDX-License-Identifier: GPL-3.0-only
|
||
|
|
|
||
|
|
make lint 2>/dev/null || {
|
||
|
|
echo -e "\nissues found, not committing"
|
||
|
|
exit 1
|
||
|
|
}
|