Skip to content

Commit

Permalink
Linux fixes: Mission planner and SITL
Browse files Browse the repository at this point in the history
  • Loading branch information
Scavanger committed Dec 18, 2024
1 parent e1c221e commit 7801390
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 30 deletions.
File renamed without changes
4 changes: 2 additions & 2 deletions js/main/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -324,9 +324,9 @@ app.whenReady().then(() => {
});
});

ipcMain.handle('chmod', (_event, path, mode) => {
ipcMain.handle('chmod', (_event, pathName, mode) => {
return new Promise(resolve => {
chmod(path, mode, error => {
chmod(path.join(__dirname, 'sitl', pathName), mode, error => {
if (error) {
resolve(error.message)
} else {
Expand Down
39 changes: 11 additions & 28 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 7801390

Please sign in to comment.