Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions charts/jenkins/unittests/config-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ tests:
fi
echo "copy plugins to shared volume"
# Copy plugins to shared volume
yes n | cp -i /usr/share/jenkins/ref/plugins/* /var/jenkins_plugins/;
cp -f /usr/share/jenkins/ref/plugins/* /var/jenkins_plugins/ 2>/dev/null || true
echo "finished initialization"
- matchSnapshot:
path: data["plugins.txt"]
Expand Down Expand Up @@ -103,7 +103,7 @@ tests:
fi
echo "copy plugins to shared volume"
# Copy plugins to shared volume
yes n | cp -i /usr/share/jenkins/ref/plugins/* /var/jenkins_plugins/;
cp -f /usr/share/jenkins/ref/plugins/* /var/jenkins_plugins/ 2>/dev/null || true
echo "finished initialization"
- it: install latest specified plugins
set:
Expand All @@ -129,5 +129,5 @@ tests:
fi
echo "copy plugins to shared volume"
# Copy plugins to shared volume
yes n | cp -i /usr/share/jenkins/ref/plugins/* /var/jenkins_plugins/;
cp -f /usr/share/jenkins/ref/plugins/* /var/jenkins_plugins/ 2>/dev/null || true
echo "finished initialization"
Loading