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 0a74051 commit e8fda08Copy full SHA for e8fda08
Plugins/AWSLambdaPackager/Plugin.swift
@@ -250,11 +250,11 @@ struct AWSLambdaPackager: CommandPlugin {
250
let relocatedResourcesDirectory = workingDirectory.appending(path: resourcesDirectoryName)
251
if FileManager.default.fileExists(atPath: artifactURL.path()) {
252
do {
253
+ arguments.append(resourcesDirectoryName)
254
try FileManager.default.copyItem(
255
atPath: artifactURL.path(),
256
toPath: relocatedResourcesDirectory.path()
257
)
- arguments.append(resourcesDirectoryName)
258
} catch let error as CocoaError {
259
260
// On Linux, when the build has been done with Docker,
0 commit comments