Skip to content

Commit 8a0641d

Browse files
committed
Fix UI helper path
1 parent 03b5afe commit 8a0641d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ui/arduino/store.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -829,7 +829,7 @@ async function store(state, emitter) {
829829
} else if (openFile.source == 'disk') {
830830
openFile.parentFolder = state.diskNavigationPath
831831
}
832-
}
832+
}
833833

834834
// Check if it will overwrite
835835
let willOverwrite = false
@@ -1418,7 +1418,7 @@ function toggleFileSelection({ fileName, source, selectedFiles }) {
14181418

14191419
async function removeBoardFolder(fullPath) {
14201420
// TODO: Replace with getting the file tree from the board and deleting one by one
1421-
let output = await serial.execFile('./ui/arduino2/helpers.py')
1421+
let output = await serial.execFile('./ui/arduino/helpers.py')
14221422
await serial.run(`delete_folder('${fullPath}')`)
14231423
}
14241424

@@ -1450,7 +1450,7 @@ async function uploadFolder(srcPath, destPath, dataConsumer) {
14501450
async function downloadFolder(srcPath, destPath, dataConsumer) {
14511451
dataConsumer = dataConsumer || function() {}
14521452
await disk.createFolder(destPath)
1453-
let output = await serial.execFile('./ui/arduino2/helpers.py')
1453+
let output = await serial.execFile('./ui/arduino/helpers.py')
14541454
output = await serial.run(`ilist_all('${srcPath}')`)
14551455
let files = []
14561456
try {

0 commit comments

Comments
 (0)