This repository was archived by the owner on Apr 3, 2025. It is now read-only.
File tree 5 files changed +8
-9
lines changed
5 files changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -86,5 +86,5 @@ output/
86
86
87
87
# Linux Artifacts
88
88
debian /DEBIAN /md5sums
89
- debian /usr /local / lib / LunaSea
89
+ debian /usr /share / lunasea
90
90
* .snap
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
- ln -sf ' /usr/local/lib/LunaSea/ lunasea' ' /usr/local /bin/lunasea'
3
+ ln -sf ' /usr/share/lunasea/ lunasea' ' /usr/bin/lunasea'
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
- rm -f ' /usr/local/ bin/lunasea'
3
+ rm -f ' /usr/bin/lunasea'
Original file line number Diff line number Diff line change @@ -5,5 +5,5 @@ Icon=/usr/share/icons/lunasea.png
5
5
Terminal =false
6
6
Type =Application
7
7
Categories =Utilities;Entertainment;
8
- Exec =/usr/local/ bin/lunasea
9
- TryExec =/usr/local/ bin/lunasea
8
+ Exec =/usr/bin/lunasea
9
+ TryExec =/usr/bin/lunasea
Original file line number Diff line number Diff line change @@ -13,11 +13,10 @@ void _setVersion(String version) {
13
13
}
14
14
15
15
void _copyBuild () {
16
- const path = 'debian/usr/local/lib ' ;
16
+ const path = 'debian/usr/share ' ;
17
17
18
- final directory = Directory (path);
18
+ final directory = Directory ('$ path /lunasea' );
19
19
if (directory.existsSync ()) directory.deleteSync (recursive: true );
20
- directory.createSync (recursive: true );
21
20
22
21
Process .runSync ('cp' , [
23
22
'-r' ,
@@ -26,7 +25,7 @@ void _copyBuild() {
26
25
]);
27
26
Process .runSync ('mv' , [
28
27
'$path /bundle' ,
29
- '$path /LunaSea ' ,
28
+ '$path /lunasea ' ,
30
29
]);
31
30
}
32
31
You can’t perform that action at this time.
0 commit comments