Skip to content

Commit

Permalink
fix find
Browse files Browse the repository at this point in the history
  • Loading branch information
damies13 committed Feb 24, 2024
1 parent b1d0d2e commit b7bb0f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/Package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@ jobs:
pwd
ls -la
echo "version variable"
sed -i -e "s/version = \"[^\"]*\"/version = \"${version}\"/" "$(find . -name *.py)"
sed -i -e "s/version = \"[^\"]*\"/version = \"${version}\"/" "$(find . -name '*.py')"
echo "version comment"
sed -i -e "s/# Version .*/# Version ${version}/" "$(find . -name *.py)"
sed -i -e "s/# Version .*/# Version ${version}/" "$(find . -name '*.py')"
echo "--------------- head rfswarm_agent.py ---------------"
head -50 rfswarm_agent/rfswarm_agent.py
echo "--------------- cat setup-manager.py ---------------"
Expand Down

0 comments on commit b7bb0f0

Please sign in to comment.