This file contains hidden or 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
| #!/bin/bash | |
| set -ex | |
| if [ $# -ne 3 ]; then | |
| echo usage: $0 jenkins_home git_repos_url backup_folder | |
| exit 1 | |
| fi | |
| # Jenkins home folder |
OlderNewer