mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-12 22:50:54 +03:00
Fix path when copying resource (#21900)
When copying resource from `{repositoryRootPath}/resources/win/*` to `{bundledResourcesPath}/cli/*`, omitted the {repositoryRootPath}. Co-authored-by: yoonhyung <yoonhyungkim@webida.org>
This commit is contained in:
parent
11b9559a5b
commit
80bf68edbc
@ -140,7 +140,7 @@ function copyNonASARResources(packagedAppPath, bundledResourcesPath) {
|
||||
'folder.ico'
|
||||
].forEach(file =>
|
||||
fs.copySync(
|
||||
path.join('resources', 'win', file),
|
||||
path.join(CONFIG.repositoryRootPath, 'resources', 'win', file),
|
||||
path.join(bundledResourcesPath, 'cli', file)
|
||||
)
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user