| 3953 | } |
| 3954 | |
| 3955 | bool SetPermissions(std::string const& filename, mode_t perms, |
| 3956 | cmExecutionStatus& status) |
| 3957 | { |
| 3958 | if (!cmSystemTools::SetPermissions(filename, perms)) { |
| 3959 | status.SetError("Failed to set permissions for " + filename); |
| 3960 | cmSystemTools::SetFatalErrorOccurred(); |
| 3961 | return false; |
| 3962 | } |
| 3963 | return true; |
| 3964 | } |
| 3965 | |
| 3966 | bool HandleChmodCommandImpl(std::vector<std::string> const& args, bool recurse, |
| 3967 | cmExecutionStatus& status) |
no test coverage detected
searching dependent graphs…