Skip to content

Commit c667458

Browse files
authored
Fix symlink for Storage
1 parent e0d4c24 commit c667458

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/services/DeploymentService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ export class DeploymentService {
143143
}
144144

145145
private async linkStorage(paths: Paths): Promise<void> {
146-
await sshOperations.execute(`ln -sfn ${paths.target}/storage ${paths.releasePath}/storage`, paths);
146+
await sshOperations.execute(`ln -sfn ${paths.target}/storage ${paths.releasePath}/`, paths);
147147
}
148148

149149
private async runOptionalScript(script: string | undefined, description: string): Promise<void> {

0 commit comments

Comments
 (0)