Skip to content

Commit 9214d4f

Browse files
committed
fix: fix issues found by pre-commit
1 parent 1882ff1 commit 9214d4f

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ updates:
44
- package-ecosystem: "github-actions"
55
directory: "/"
66
schedule:
7-
interval: "daily"
7+
interval: "daily"

.github/workflows/release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,4 +101,3 @@ jobs:
101101
with:
102102
test-repo: true
103103
token: ${{ secrets.RADXA_APT_TEST_REPO_TOKEN }}
104-

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,10 @@ Radxa USB OTG utility (radxa-otgutils) provides additional features over USB OTG
77
# Usage
88

99
The following gadgets are supported:
10-
* radxa-adbd
11-
* radxa-usbnet
10+
11+
- radxa-adbd
12+
- radxa-usbnet
1213

1314
They can be enabled with `sudo systemctl enable --now <gadget>`, and disabled with `sudo systemctl disable --now <gadget>`.
1415

15-
Please be aware than those gadgets are mutually exclusive. If one is already enabled you have to diable then reboot before you can enable anyther gadget.
16+
Please be aware than those gadgets are mutually exclusive. If one is already enabled you have to diable then reboot before you can enable anyther gadget.

debian/copyright

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
22
Upstream-Name: radxa-otgutils
33
Source: https://github.com/radxa-pkg/radxa-otgutils
4-
4+
55
Files: *
66
Copyright: © 2022 Radxa Computer Co., Ltd
77
License: GPL-3+

debian/install

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
src/radxa-otgutils /usr/sbin
2-
man/*.8 /usr/share/man/man8
2+
man/*.8 /usr/share/man/man8

man/.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
/*.8
1+
/*.8

man/radxa-otgutils.8.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ features over USB OTG port to facilitate easy communication
1515
with another computer.
1616

1717
This is the main executable. However, you should run it under
18-
one of its symbolic links to select the specific gadget.
18+
one of its symbolic links to select the specific gadget.

src/.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
/SOURCE
1+
/SOURCE

src/radxa-otgutils

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ start()
9191

9292
local UDC=
9393
UDC="$(basename "$(find /sys/class/udc -maxdepth 1 -mindepth 1 | sort | head -1)")"
94-
if [ -z "$UDC" ];
94+
if [ -z "$UDC" ];
9595
then
9696
echo "No USB Device Controller was detected. Did you set your OTG port to host mode?"
9797
exit 1

0 commit comments

Comments
 (0)