Skip to content

Commit

Permalink
remove use of sudo
Browse files Browse the repository at this point in the history
  • Loading branch information
alkazar committed Sep 7, 2024
1 parent 9c2c1ea commit efabb22
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions __frzr
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ write_tracker_file() {
rm -f "${TRACKER_FILE_PATH}"
sg frzr -c "touch ${TRACKER_FILE_PATH}"
else
sudo rm -rf "${TRACKER_FILE_PATH}"
sudo touch "${TRACKER_FILE_PATH}"
sudo chown :frzr "${TRACKER_FILE_PATH}"
sudo chmod g+w "${TRACKER_FILE_PATH}"
rm -rf "${TRACKER_FILE_PATH}"
touch "${TRACKER_FILE_PATH}"
chown :frzr "${TRACKER_FILE_PATH}"
chmod g+w "${TRACKER_FILE_PATH}"
fi
fi

Expand Down

0 comments on commit efabb22

Please sign in to comment.