mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-12-08 08:17:31 +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(join(cwd.path, "linux", "spotube.desktop"), tempDir);
|
||||
await copyPath(
|
||||
join(cwd.path, "linux", "com.github.KRTirtho.Spotube.appdata.xml"),
|
||||
tempDir,
|
||||
await File(join(cwd.path, "linux", "spotube.desktop")).copy(
|
||||
join(tempDir, "spotube.desktop"),
|
||||
);
|
||||
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();
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user