-
-
Save dishbreak/484e54a953320cebd3d7e06fa0aeb942 to your computer and use it in GitHub Desktop.
A short script to delete free locks from the lockable resources plugin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def manager = org.jenkins.plugins.lockableresources.LockableResourcesManager.get() | |
def resources = manager.getResources().findAll{ | |
!it.locked | |
} | |
resources.each{ | |
manager.getResources().remove(it) | |
} | |
manager.save() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment