mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-12-10 09:07:29 +00:00
cd: fix linux file copy error
This commit is contained in:
parent
f021c4f996
commit
65db056b0d
@ -58,12 +58,17 @@ class LinuxBuildCommand extends Command with BuildCommandCommonSteps {
|
|||||||
));
|
));
|
||||||
|
|
||||||
await copyPath(bundleDirPath, tempDir);
|
await copyPath(bundleDirPath, tempDir);
|
||||||
await copyPath(join(cwd.path, "linux", "spotube.desktop"), tempDir);
|
await File(join(cwd.path, "linux", "spotube.desktop")).copy(
|
||||||
await copyPath(
|
join(tempDir, "spotube.desktop"),
|
||||||
join(cwd.path, "linux", "com.github.KRTirtho.Spotube.appdata.xml"),
|
);
|
||||||
tempDir,
|
await File(
|
||||||
|
join(cwd.path, "linux", "com.github.KRTirtho.Spotube.appdata.xml"),
|
||||||
|
).copy(
|
||||||
|
join(tempDir, "com.github.KRTirtho.Spotube.appdata.xml"),
|
||||||
|
);
|
||||||
|
await File(join(cwd.path, "assets", "spotube-logo.png")).copy(
|
||||||
|
join(tempDir, "spotube-logo.png"),
|
||||||
);
|
);
|
||||||
await copyPath(join(cwd.path, "assets", "spotube-logo.png"), tempDir);
|
|
||||||
|
|
||||||
final archive = Archive();
|
final archive = Archive();
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user