Skip to content

Commit f16dc3e

Browse files
committed
fix ga posting error
1 parent 6c69982 commit f16dc3e

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/validate_input_files.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,8 @@ jobs:
3232
id: validate
3333
run: |
3434
python ./src/scripts/validate_input_files.py 2>&1 | tee validation_output.txt
35-
python ./src/scripts/validate_input_files.py
36-
exit_code=$?
37-
echo "Exit code111: $exit_code"
38-
echo "Exit code2: ${PIPESTATUS[0]}"
35+
exit_code=${PIPESTATUS[0]}
36+
echo "Exit code3: $exit_code"
3937
echo "Validation output:"
4038
cat validation_output.txt
4139
if [ $exit_code -ne 0 ]; then

0 commit comments

Comments
 (0)