Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09f8600 commit 592bbdcCopy full SHA for 592bbdc
commands/upload/upload.go
@@ -208,7 +208,7 @@ func run(command *cobra.Command, args []string) {
208
209
uploadProperties.SetPath("build.path", importPath)
210
uploadProperties.Set("build.project_name", importFile)
211
- if _, err := sketch.FullPath.Join(importFile + ext).Stat(); err != nil {
+ if _, err := importPath.Join(importFile + ext).Stat(); err != nil {
212
if os.IsNotExist(err) {
213
formatter.PrintErrorMessage("Compiled sketch not found. Please compile first.")
214
} else {
0 commit comments