We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5f6c31 commit 89f5ad6Copy full SHA for 89f5ad6
src/org/librecores/fusesoc/FuseSoCBuilder.groovy
@@ -91,6 +91,7 @@ class FuseSoCBuilder implements Serializable {
91
String oldCoreDef = script.readFile(filePath)
92
String newCoreDef = oldCoreDef.substring(0,oldCoreDef.indexOf('[provider]')) + modified
93
script.writeFile file: filePath, text: newCoreDef
94
- script.archiveArtifacts artifacts: filePath, excludes: null
+ script.sh "cp ${filePath} modified_${_coreName}.core"
95
+ script.archiveArtifacts artifacts: "modified_${_coreName}.core", excludes: null
96
}
97
0 commit comments