Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
Already on GitHub? Sign in to your account
many: make shell scripts shellcheck-clean #3369
Merged
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
c5733ff
many: make shell scripts shellcheck-clean
chipaca 51b0902
tests: bump completion expect timeout to 30s
chipaca 5f0aeae
many: cover *all* standalone shell scripts with shellcheck
chipaca 8d9315d
run-checks: check for misuse of GOPATH; it's a list.
chipaca 887d086
Merge branch 'master' into shellcheck-more
chipaca
Jump to file or symbol
Failed to load files and symbols.
| @@ -15,7 +15,7 @@ MAJMIN="$4" | ||
| [ -n "$DEVPATH" ] || { echo "no devpath given" >&2; exit 1; } | ||
| [ -n "$MAJMIN" ] || { echo "no major/minor given" >&2; exit 0; } | ||
| -APPNAME=`echo $APPNAME | tr '_' '.'` | ||
zyga
Contributor
|
||
| +APPNAME="$( echo "$APPNAME" | tr '_' '.' )" | ||
| app_dev_cgroup="/sys/fs/cgroup/devices/$APPNAME" | ||
| # check if it's a block or char dev | ||
Oops, something went wrong.
Wow, thank you, I never knew how to disable those :)