Skip to content

Commit 2d968bd

Browse files
committed
Fix cqsh local source path
The local path used for installing cqsh_1 to an IBM i is missing the api folder.
1 parent 294c715 commit 2d968bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const dist = path.resolve(__dirname, `dist`);
2727

2828
fs.mkdirSync(dist, {recursive: true});
2929

30-
const files = [{relative: `src/components/cqsh/cqsh`, name: `cqsh_1`}];
30+
const files = [{relative: `src/api/components/cqsh/cqsh`, name: `cqsh_1`}];
3131

3232
for (const file of files) {
3333
const src = path.resolve(__dirname, file.relative);

0 commit comments

Comments
 (0)