You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
630 B
17 lines
630 B
4 years ago
|
#!/bin/bash
|
||
|
# Currently, the build container still used root. This results in files owned by root that interfere with running things outside of the container. Pending additional tooling work, this script is a stop gap that searches and chowns all files in the proeject tree owned by root
|
||
|
|
||
|
if [[ $(whoami) == "root" ]]; then
|
||
|
echo "Should not be run as root"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
# Uses your host username and its primary associated group
|
||
|
username="$(whoami)"
|
||
|
group="$(id -g -n "$username")"
|
||
|
|
||
|
while read -r file; do
|
||
|
echo sudo chown "$username":"$group" "$file"
|
||
|
sudo chown "$username":"$group" "$file"
|
||
|
done < <(find ~+ -type f -user root)
|