We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4977fb4 commit b236ad9Copy full SHA for b236ad9
sls-rust.js
@@ -78,7 +78,7 @@ class SlsRust {
78
await this.runCommand({ command: `mkdir ${projectDir}`, cwd: path })
79
await this.runCommand({ command: `mv ${projectName} ${projectDir}/`, cwd: path })
80
await this.runCommand({ command: `mv ${projectFullPath} ${bootstrapFullPath}`, cwd: path })
81
- await this.runCommand({ command: `zip ${projectFullPath}.zip ${bootstrapFullPath}`, cwd: path })
+ await this.runCommand({ command: `zip -j ${projectFullPath}.zip ${bootstrapFullPath}`, cwd: path })
82
await this.runCommand({ command: `mv ${projectFullPath}.zip .`, cwd: path })
83
} catch (error) {
84
throw new Error(`Error trying to zip artefact in ${projectName}: ${error}`)
0 commit comments