Thursday, 29 October 2020

Jenkins __pycache__/__init__.cpython-37.pyc: Operation not permitted

 sudo chown -R jenkins:jenkins /var/lib/jenkins/workspace


from : https://stackoverflow.com/questions/50782740/why-is-jenkins-suddenly-unable-to-delete-a-workspace

No comments:

Post a Comment

How to check if a file contains a specific string using Bash

 In case if you want to check whether file does not contain a specific string, you can do it as follows. if ! grep -q SomeString "$File...