-
Notifications
You must be signed in to change notification settings - Fork 0
test csdiff #81 #31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
test csdiff #81 #31
Conversation
Codecov ReportBase: 62.16% // Head: 62.66% // Increases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## main #31 +/- ##
==========================================
+ Coverage 62.16% 62.66% +0.50%
==========================================
Files 2 2
Lines 148 150 +2
==========================================
+ Hits 92 94 +2
Misses 56 56
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
@@ -0,0 +1,9 @@ | |||
#!/bin/sh | |||
|
|||
. $source'/script' |
Check warning
Code scanning / shellcheck
source is referenced but not assigned.
|
||
. $source'/script' | ||
|
||
[[ $a =~ 'a' ]] && exit 0 |
Check warning
Code scanning / shellcheck
In POSIX sh, [[ ]] is undefined.
|
||
. $source'/script' | ||
|
||
[[ $a =~ 'a' ]] && exit 0 |
Check warning
Code scanning / shellcheck
a is referenced but not assigned.
@@ -17,6 +17,10 @@ | |||
# FILE PATHS # | |||
# ------------ # | |||
|
|||
a="a *" | |||
|
|||
echo $a |
Check notice
Code scanning / shellcheck
Double quote to prevent globbing and word splitting.
@@ -0,0 +1,9 @@ | |||
#!/bin/sh | |||
|
|||
. $source'/script' |
Check notice
Code scanning / shellcheck
Not following: ./script: openBinaryFile: does not exist (No such file or directory)
@@ -0,0 +1,9 @@ | |||
#!/bin/sh | |||
|
|||
. $source'/script' |
Check notice
Code scanning / shellcheck
Double quote to prevent globbing and word splitting.
@@ -0,0 +1,9 @@ | |||
#!/bin/sh | |||
|
|||
. $source'/script' |
Check notice
Code scanning / shellcheck
Prefer putting braces around variable references even when not strictly required.
|
||
. $source'/script' | ||
|
||
[[ $a =~ 'a' ]] && exit 0 |
Check notice
Code scanning / shellcheck
Prefer putting braces around variable references even when not strictly required.
@@ -0,0 +1,3 @@ | |||
if |
Check failure
Code scanning / shellcheck
Couldn't parse this if expression. Fix to allow more checks.
@@ -0,0 +1,3 @@ | |||
if | |||
echo 'YOLO' | |||
done |
Check failure
Code scanning / shellcheck
Expected 'then'.
@@ -0,0 +1,3 @@ | |||
if | |||
echo 'YOLO' | |||
done |
Check failure
Code scanning / shellcheck
Unexpected keyword/token. Fix any mentioned problems and try again.
level
key in SARIF output csutils/csdiff#81