Skip to content

Commit

Permalink
fix: upload file not exist
Browse files Browse the repository at this point in the history
  • Loading branch information
murongg committed Feb 20, 2024
1 parent 00a2c3f commit 46cb640
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/cle-cli/src/commands/upload.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ export async function upload(options: UploadOptions) {
const wasmFile = fs.createReadStream(wasmPath)
const yamlFile = fs.createReadStream(yamlPath)
const files = {
'mapping.ts': mappingFile,
'cle.wasm': wasmFile,
'cle.yaml': yamlFile,
'src/mapping.ts': mappingFile,
'build/cle.wasm': wasmFile,
'src/cle.yaml': yamlFile,
}
const directoryTag = { userAddress, graphName: yaml.name }
const directoryName = `${directoryTag.graphName}-${directoryTag.userAddress}`
Expand Down

0 comments on commit 46cb640

Please sign in to comment.