Skip to content

Commit

Permalink
minor cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
agracio committed Feb 27, 2025
1 parent b40eaf1 commit ed6ee43
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Test

on:
on:
workflow_dispatch:
pull_request:
paths-ignore:
- 'samples/*'
Expand Down
2 changes: 1 addition & 1 deletion tools/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ if (process.platform === 'win32') {
function copyFile(filePath, filename) {
return function(copyToDir) {
//console.log( 'copy '+filename+' from '+filePath+' to '+ copyToDir );
outFile = path.resolve(copyToDir, filename);
let outFile = path.resolve(copyToDir, filename);
if ( fs.existsSync( outFile ) ) {
// clear readonly: add write permission to ogw (222 octal -> 92 hex -> 146 decimal)
fs.chmodSync( outFile, fs.statSync(outFile).mode | 146 )
Expand Down

0 comments on commit ed6ee43

Please sign in to comment.