6 lines
120 B
Bash
6 lines
120 B
Bash
#!/bin/sh
|
|
|
|
SCRIPT="$(grep 'SCRIPT *=' Makefile)"
|
|
SCRIPT="${SCRIPT#*=}"
|
|
|
|
shellcheck -x --shell=sh --format=gcc "$SCRIPT"
|