File tree Expand file tree Collapse file tree 7 files changed +8
-8
lines changed
Expand file tree Collapse file tree 7 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -139,5 +139,5 @@ jobs:
139139 uses : ncipollo/release-action@v1
140140 with :
141141 allowUpdates : true
142- tag : v2.0.2
142+ tag : v2.0.3
143143 artifacts : " Output/*"
Original file line number Diff line number Diff line change 22; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
33
44#define MyAppName " FUNC"
5- #define MyAppVersion " 2.0.2 "
5+ #define MyAppVersion " 2.0.3 "
66#define MyAppPublisher " Galaxy Pay, LLC"
77#define MyAppPublisherURL " https://galaxy-pay.com"
88#define MyPublishPath " publish"
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ public async Task<ActionResult<string>> GoalUpdate(Models.Release model)
9494 url = latestInfo . Assets . FirstOrDefault ( a => a . Name . Contains ( "node_stable_linux-amd64" )
9595 && a . Name . EndsWith ( "tar.gz" ) ) ? . BrowserDownloadUrl ;
9696 if ( url == null ) return BadRequest ( ) ;
97- await Utils . ExecCmd ( $ "wget -L -o { Utils . dataPath } /node.tar.gz { url } ") ;
97+ await Utils . ExecCmd ( $ "wget -L -O { Utils . dataPath } /node.tar.gz { url } ") ;
9898 }
9999
100100 await Utils . ExecCmd ( $ "tar -zxf { Utils . dataPath } /node.tar.gz -C { Utils . dataPath } bin") ;
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ public async Task<ActionResult> CreateRetiService(RetiCreate model)
4040 {
4141 var url = latest . Assets . FirstOrDefault ( a => a . Name . Contains ( "linux-amd64.tar.gz" ) ) ? . BrowserDownloadUrl ;
4242 if ( url == null ) return BadRequest ( ) ;
43- await Utils . ExecCmd ( $ "wget -L -o { Utils . dataPath } /reti.tar.gz { url } ") ;
43+ await Utils . ExecCmd ( $ "wget -L -O { Utils . dataPath } /reti.tar.gz { url } ") ;
4444 await Utils . ExecCmd ( $ "tar -zxf { Utils . dataPath } /reti.tar.gz -C { Path . Combine ( Utils . dataPath , "reti" ) } ") ;
4545 }
4646 }
@@ -108,7 +108,7 @@ public async Task<ActionResult> UpdateReti()
108108 {
109109 var url = latest . Assets . FirstOrDefault ( a => a . Name . Contains ( "linux-amd64.tar.gz" ) ) ? . BrowserDownloadUrl ;
110110 if ( url == null ) return BadRequest ( ) ;
111- await Utils . ExecCmd ( $ "wget -L -o { Utils . dataPath } /reti.tar.gz { url } ") ;
111+ await Utils . ExecCmd ( $ "wget -L -O { Utils . dataPath } /reti.tar.gz { url } ") ;
112112 await Utils . ExecCmd ( $ "tar -zxf { Utils . dataPath } /reti.tar.gz -C { Utils . dataPath } reti") ;
113113 }
114114
Original file line number Diff line number Diff line change 11rm -r Output
22
3- PKG=Output/func_2.0.2_amd64
3+ PKG=Output/func_2.0.3_amd64
44
55mkdir -p $PKG /lib/systemd/system
66mkdir -p $PKG /opt/func
Original file line number Diff line number Diff line change 11Package: func
2- Version: 2.0.2
2+ Version: 2.0.3
33Section: base
44Priority: optional
55Architecture: amd64
Original file line number Diff line number Diff line change 11{
22 "name" : " func-webui" ,
3- "version" : " 2.0.2 " ,
3+ "version" : " 2.0.3 " ,
44 "scripts" : {
55 "dev" : " vite" ,
66 "build" : " vue-tsc --noEmit && vite build" ,
You can’t perform that action at this time.
0 commit comments