Skip to content

Commit 7666c45

Browse files
committed
chore: excluded licenses from the files to be copied at release
[skip ci]
1 parent 0f8ac5c commit 7666c45

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

infra/release/src/copy.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,7 @@ import shell from 'shelljs'
77

88
const __dirname = path.dirname(url.fileURLToPath(import.meta.url))
99
const rootDir = path.resolve(__dirname, '..', '..', '..')
10-
const targetFiles = [
11-
path.resolve(rootDir, 'README.md'),
12-
path.resolve(rootDir, 'CHANGELOG.md'),
13-
path.resolve(rootDir, 'LICENSE'),
14-
]
10+
const targetFiles = [path.resolve(rootDir, 'README.md'), path.resolve(rootDir, 'CHANGELOG.md')]
1511
const destDir = path.resolve(rootDir, 'packages/vscode-webdriverio')
1612

1713
const result = shell.cp('-f', targetFiles, destDir)

0 commit comments

Comments
 (0)