Skip to content
This repository was archived by the owner on Oct 1, 2024. It is now read-only.

Commit 274367a

Browse files
committed
Fix typo
1 parent 1a71dc2 commit 274367a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

build/markExecutableFiles.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
import os
22
import zipfile
33

4-
input_archive_path = f"{os.getenv('BUILD_STAGINGDIRECTORY')})/vscode-arduino.vsix"
5-
output_archive_path = f"{os.getenv('BUILD_STAGINGDIRECTORY')})/vscode-arduino-out.vsix"
4+
staging_directory = os.getenv('BUILD_STAGINGDIRECTORY')
5+
input_archive_path = f"{staging_directory}/vscode-arduino.vsix"
6+
output_archive_path = f"{staging_directory}/vscode-arduino-out.vsix"
67

78
filenames = [
89
"extension/out/serial-monitor-cli/darwin/main",

0 commit comments

Comments
 (0)