mirror of
https://github.com/007revad/Synology_M2_volume.git
synced 2026-04-25 07:46:05 +03:00
[GH-ISSUE #61] Kudos! #211
Labels
No labels
bug
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/Synology_M2_volume#211
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @mceachen on GitHub (Jun 14, 2023).
Original GitHub issue: https://github.com/007revad/Synology_M2_volume/issues/61
Thanks for this work!
In case you've not seen it before, shellcheck is a great linter for shell, and integrates with a bunch of editors (I use the this extension with vscode, fwiw).
It didn't find anything horrible here--just a few nits:
Feel free to close this issue--I just wanted to stop by and thank you for your work.
(I found this project via https://www.mklibrary.com/synology-nvme-volume/)
Cheers!
@007revad commented on GitHub (Jun 16, 2023):
That's a well written guide. I might put a link to it on my readme page.
I do use shellcheck.
args="$@"is just so I can echo the arguments used. But I could change itargs=("$@")@mceachen commented on GitHub (Jun 16, 2023):
ICYMI, you can prepend the line
# shellcheck disable=SC2015(or whatever the warning is) right above the offending line of code if you've checked out the linting error and have determined it's a false positive or otherwise ignorable. Docs are here.Thanks again.