mirror of
https://github.com/Dasharo/ec.git
synced 2026-06-13 10:16:44 -07: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
|
||
|
|
}
|