Skip to content

Commit f8e6c8d

Browse files
committed
Fix mistake with debug output
1 parent c3469de commit f8e6c8d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Jenkinsfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,8 @@ pipeline {
102102
always {
103103
// Dumps to analyze later
104104
sh 'mkdir -p debug'
105-
sh 'docker-compose logs fullstack-sqlite | debug/docker_fullstack_sqlite.log'
106-
sh 'docker-compose logs db | debug/docker_db.log'
105+
sh 'docker-compose logs fullstack-sqlite > debug/docker_fullstack_sqlite.log'
106+
sh 'docker-compose logs db > debug/docker_db.log'
107107
// Cypress videos and screenshot artifacts
108108
dir(path: 'test/results') {
109109
archiveArtifacts allowEmptyArchive: true, artifacts: '**/*', excludes: '**/*.xml'
@@ -128,8 +128,8 @@ pipeline {
128128
always {
129129
// Dumps to analyze later
130130
sh 'mkdir -p debug'
131-
sh 'docker-compose logs fullstack-mysql | debug/docker_fullstack_mysql.log'
132-
sh 'docker-compose logs db | debug/docker_db.log'
131+
sh 'docker-compose logs fullstack-mysql > debug/docker_fullstack_mysql.log'
132+
sh 'docker-compose logs db > debug/docker_db.log'
133133
// Cypress videos and screenshot artifacts
134134
dir(path: 'test/results') {
135135
archiveArtifacts allowEmptyArchive: true, artifacts: '**/*', excludes: '**/*.xml'

0 commit comments

Comments
 (0)