mirror of
https://github.com/Ukendio/jecs.git
synced 2025-04-24 17:10:03 +00:00
Use bash entirely
This commit is contained in:
parent
b365fc8c1c
commit
9878df20ba
2 changed files with 2 additions and 4 deletions
2
.github/workflows/analysis.yaml
vendored
2
.github/workflows/analysis.yaml
vendored
|
@ -17,4 +17,4 @@ jobs:
|
|||
- name: Analyze
|
||||
run: |
|
||||
(luau-analyze src || true) > analyze-log.txt # Suppress errors for now.
|
||||
cat analyze-log.txt | (bash ./scripts/gh-warn-luau-analyze.sh)
|
||||
bash ./scripts/gh-warn-luau-analyze.sh analyze-log.txt
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
while IFS="" read -r line || [ -n "$line" ]; do
|
||||
|
||||
echo "$line"
|
||||
cat $1 | while IFS="" read -r line || [ -n "$line" ]; do
|
||||
|
||||
# Check if the line contains the error format
|
||||
if [[ "$line" == *"TypeError:"* ]]; then
|
||||
|
|
Loading…
Reference in a new issue