Skip to content

Commit ac9f802

Browse files
dbieberclaude
andcommitted
Simplify repository ownership change
Use a simpler chown -R command to change ownership of the entire repository to the pi user without any exclusions. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 08a477d commit ac9f802

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,8 @@ jobs:
9393
# Checkout the specific commit
9494
git checkout $GITHUB_SHA
9595
96-
# Change ownership of repository to pi user
97-
# This leaves supervisord.conf unchanged
98-
find /home/pi/code/github/dbieber/GoNoteGo -not -path "*/\.git*" -not -path "*/gonotego/supervisord\.conf" -exec chown pi:pi {} \;
96+
# Change ownership of entire repository to pi user
97+
chown -R pi:pi /home/pi/code/github/dbieber/GoNoteGo
9998
10099
echo "Including web app"
101100
echo "Checking web app files at /web-app-dist:"

0 commit comments

Comments
 (0)