9 lines
239 B
Plaintext
9 lines
239 B
Plaintext
|
#!/bin/bash
|
||
|
# Add the Jenkins package archive
|
||
|
|
||
|
set -e
|
||
|
set -o xtrace
|
||
|
|
||
|
wget -q -O - http://pkg.jenkins-ci.org/debian/jenkins-ci.org.key | apt-key add -
|
||
|
echo deb http://pkg.jenkins-ci.org/debian binary/ > /etc/apt/sources.list.d/jenkins.list
|