We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af3375f commit ae98476Copy full SHA for ae98476
lib/inject.js
@@ -95,7 +95,7 @@ function injectAllRequirements() {
95
.map(func => {
96
if (func.module !== '.') {
97
const artifact = func.package.artifact;
98
- const newArtifact = path.join('.serverless', `${func.module-func.name}.zip`);
+ const newArtifact = path.join('.serverless', `${func.module}-${func.name}.zip`);
99
func.package.artifact = newArtifact;
100
return moveModuleUp(artifact, newArtifact, func.module).then(
101
() => func
0 commit comments