Skip to content

Commit

Permalink
fix(CICD): test j'en peux plus...
Browse files Browse the repository at this point in the history
  • Loading branch information
JulienChampagnol committed Jun 25, 2024
1 parent 0db7923 commit 56d9271
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CICD.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
node-version: 20
- name: Publish version
run: |
jq '.version = "${{ needs.semantic.outputs.version }}"' package.json > "$tmp" && mv "$tmp" package.json
jq '.version = "${{ needs.semantic.outputs.version }}"' package.json > temp && mv temp package.json
cat package.json
npm install
npm run prepackage
Expand Down
4 changes: 2 additions & 2 deletions node_scripts/install_back.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ if (process.platform === "win32"){
}

child.stdout.on("data",function(data){
console.log(data);
console.log("" + data);
});
child.stderr.on("data",function(data){
console.log(data);
console.log("" + data);
});
child.on("exit",function(){
console.log("Exit script");
Expand Down
4 changes: 2 additions & 2 deletions node_scripts/install_viewer.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ if (process.platform === "win32"){
}

child.stdout.on("data",function(data){
console.log(data);
console.log("" + data);
});
child.stderr.on("data",function(data){
console.log(data);
console.log("" + data);
});
child.on("exit",function(){
console.log("Exit script");
Expand Down

0 comments on commit 56d9271

Please sign in to comment.