diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2024-07-31 08:34:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-31 08:34:51 +0200 |
commit | 8ff8d9ca19b49161cd2be52d3dbad351634d1bc9 (patch) | |
tree | de789161139ebeb4a63eb880f9faf44185d6d510 | |
parent | 45073f9448a177c8787331b1bef178dc291de74e (diff) | |
parent | 0153124f98ef75aea17f6b6224da221a9347ee60 (diff) | |
download | nextcloud-server-8ff8d9ca19b49161cd2be52d3dbad351634d1bc9.tar.gz nextcloud-server-8ff8d9ca19b49161cd2be52d3dbad351634d1bc9.zip |
Merge pull request #46893 from nextcloud/fix/cypress-local
-rw-r--r-- | cypress/dockerNode.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cypress/dockerNode.ts b/cypress/dockerNode.ts index 180ff7894c6..33c2829c9d0 100644 --- a/cypress/dockerNode.ts +++ b/cypress/dockerNode.ts @@ -8,7 +8,7 @@ import Docker from 'dockerode' import waitOn from 'wait-on' -import tar from 'tar' +import { c as createTar } from 'tar' import path from 'path' import { execSync } from 'child_process' import { existsSync } from 'fs' @@ -170,7 +170,7 @@ export const applyChangesToNextcloud = async function() { const container = docker.getContainer(CONTAINER_NAME) // Tar-streaming the above folders into the container - const serverTar = tar.c({ gzip: false }, folderPaths) + const serverTar = createTar({ gzip: false }, folderPaths) await container.putArchive(serverTar, { path: htmlPath, }) |