Skip to content

Commit

Permalink
Try again
Browse files Browse the repository at this point in the history
  • Loading branch information
tcamise-gpsw committed Apr 11, 2024
1 parent e04c5ed commit 7fa792f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ jobs:
git diff --name-only HEAD^ HEAD >files.txt
while IFS= read -r file; do
if [[ $file != demos/python/sdk_wireless_camera_control* ]]; then
echo "{found_modified_python_file}={false}" >> $GITHUB_OUTPUT
echo "found_modified_python_file=false" >> "$GITHUB_OUTPUT"
else
echo "Found a Python SDK modified file"
echo "{found_modified_python_file}={true}" >> $GITHUB_OUTPUT
echo "found_modified_python_file=true" >> "$GITHUB_OUTPUT"
break
fi
done <files.txt
Expand Down
2 changes: 1 addition & 1 deletion demos/python/sdk_wireless_camera_control/TODO.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

# TODO

## General
## General

- [ ] Generate BLE and HTTP API from specs (OpenAPI, protobuf, etc.)
- [ ] Better handle kwargs that match base dict args in command as_dict methods
Expand Down

0 comments on commit 7fa792f

Please sign in to comment.