Skip to content

Commit 6e0acb2

Browse files
PabloLIONvikingair
andauthored
chore: edit test/output.sh comply with POSIX (#391)
Co-authored-by: Viktor Luft <[email protected]>
1 parent 238958c commit 6e0acb2

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

test/output.sh

+19-19
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,58 @@
11
#!/bin/bash
22

3-
function desc() {
4-
echo "\033[01;38;5;022m############### $1 ###############\033[0m"
3+
make_title() {
4+
printf '\033[01;38;5;022m############### %s ###############\033[0m\n' "$1"
55
}
66

7-
desc "LIST"
7+
make_title "LIST"
88
./bin/cli.js lib/api.js
99

10-
desc "SUMMARY"
10+
make_title "SUMMARY"
1111
./bin/cli.js lib/api.js -s
1212

13-
desc "DEPENDS"
13+
make_title "DEPENDS"
1414
./bin/cli.js lib/api.js -d log.js
1515

16-
desc "CIRCULAR (OK)"
16+
make_title "CIRCULAR (OK)"
1717
./bin/cli.js test/cjs/a.js -c
1818

19-
desc "CIRCULAR (FOUND, NO INDEX COUNTING)"
19+
make_title "CIRCULAR (FOUND, NO INDEX COUNTING)"
2020
./bin/cli.js test/cjs/circular/a.js -c --no-count
2121

22-
desc "CIRCULAR (FOUND, WITH INDEX COUNT)"
22+
make_title "CIRCULAR (FOUND, WITH INDEX COUNT)"
2323
./bin/cli.js test/cjs/circular/a.js -c
2424

25-
desc "NPM"
25+
make_title "NPM"
2626
./bin/cli.js test/cjs/npm.js --include-npm
2727

28-
desc "STDIN"
28+
make_title "STDIN"
2929
./bin/cli.js --json lib/api.js | tr '[a-z]' '[A-Z]' | ./bin/cli.js --stdin
3030

31-
desc "IMAGE"
31+
make_title "IMAGE"
3232
./bin/cli.js lib/api.js --image /tmp/test.svg
3333

34-
desc "DOT"
34+
make_title "DOT"
3535
./bin/cli.js lib/api.js --dot
3636

37-
desc "JSON"
37+
make_title "JSON"
3838
./bin/cli.js lib/api.js --json
3939

40-
desc "NO COLOR"
40+
make_title "NO COLOR"
4141
./bin/cli.js lib/api.js --no-color
4242

43-
desc "SHOW EXTENSION"
43+
make_title "SHOW EXTENSION"
4444
./bin/cli.js lib/api.js --show-extension
4545

46-
desc "WARNINGS (NOTE)"
46+
make_title "WARNINGS (NOTE)"
4747
./bin/cli.js test/cjs/missing.js -c
4848

49-
desc "WARNINGS (LIST)"
49+
make_title "WARNINGS (LIST)"
5050
./bin/cli.js test/cjs/missing.js -c --warning
5151

52-
desc "ERROR"
52+
make_title "ERROR"
5353
./bin/cli.js file/not/found.js
5454

55-
desc "DEBUG"
55+
make_title "DEBUG"
5656
./bin/cli.js lib/log.js --debug
5757

5858
exit 0

0 commit comments

Comments
 (0)