Browse Source

fix lower

pull/2379/head
lewis 3 years ago
parent
commit
cf3fd5bf75
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      routers/repo/grampus.go

+ 1
- 1
routers/repo/grampus.go View File

@@ -493,7 +493,7 @@ func generateCommand(repoName, processorType, codeObsPath, dataObsPath, bootFile
}
}

commandCode := "cd /tmp/code/" + repoName + ";python " + bootFile + paramCode + ";"
commandCode := "cd /tmp/code/" + strings.ToLower(repoName) + ";python " + bootFile + paramCode + ";"
command += commandCode

//get exec result


Loading…
Cancel
Save