Skip to content

Commit 9ad729a

Browse files
committed
fix: service paths
1 parent e0a5b84 commit 9ad729a

File tree

11 files changed

+14
-14
lines changed

11 files changed

+14
-14
lines changed

.github/workflows/go.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,5 +266,5 @@ jobs:
266266
uses: ncipollo/release-action@v1
267267
with:
268268
allowUpdates: true
269-
tag: v2.2.0
269+
tag: v2.2.1
270270
artifacts: "Output/*"

FUNC.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
33

44
#define MyAppName "FUNC"
5-
#define MyAppVersion "2.2.0"
5+
#define MyAppVersion "2.2.1"
66
#define MyAppPublisher "Galaxy Pay, LLC"
77
#define MyAppPublisherURL "https://galaxy-pay.com"
88
#define MyPublishPath "publish"

FUNC/Templates/func.algorand.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
<key>Label</key>
66
<string>func.algorand</string>
77
<key>Program</key>
8-
<string>/usr/local/func/bin/algod</string>
8+
<string>/usr/local/share/func/bin/algod</string>
99
<key>EnvironmentVariables</key>
1010
<dict>
1111
<key>ALGORAND_DATA</key>
12-
<string>/usr/local/func/algorand</string>
12+
<string>/usr/local/share/func/algorand</string>
1313
</dict>
1414
<key>RunAtLoad</key>
1515
<true/>

FUNC/Templates/func.fnet.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
<key>Label</key>
66
<string>func.fnet</string>
77
<key>Program</key>
8-
<string>/usr/local/func/bin/algod</string>
8+
<string>/usr/local/share/func/bin/algod</string>
99
<key>EnvironmentVariables</key>
1010
<dict>
1111
<key>ALGORAND_DATA</key>
12-
<string>/usr/local/func/fnet</string>
12+
<string>/usr/local/share/func/fnet</string>
1313
</dict>
1414
<key>RunAtLoad</key>
1515
<true/>

FUNC/Templates/func.reti.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<key>Label</key>
66
<string>func.reti</string>
77
<key>Program</key>
8-
<string>/usr/local/func/reti/reti -n fnet -e /usr/local/func/reti/.env d</string>
8+
<string>/usr/local/share/func/reti/reti -n fnet -e /usr/local/share/func/reti/.env d</string>
99
<key>RunAtLoad</key>
1010
<true/>
1111
</dict>

FUNC/Templates/func.voi.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
<key>Label</key>
66
<string>func.voi</string>
77
<key>Program</key>
8-
<string>/usr/local/func/bin/algod</string>
8+
<string>/usr/local/share/func/bin/algod</string>
99
<key>EnvironmentVariables</key>
1010
<dict>
1111
<key>ALGORAND_DATA</key>
12-
<string>/usr/local/func/voi</string>
12+
<string>/usr/local/share/func/voi</string>
1313
</dict>
1414
<key>RunAtLoad</key>
1515
<true/>

create-package-deb.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
rm -r Output
22

3-
PKG=Output/func_2.2.0_linux-$1
3+
PKG=Output/func_2.2.1_linux-$1
44

55
mkdir -p $PKG/lib/systemd/system
66
mkdir -p $PKG/opt/func

create-package-pkg.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ pkgbuild --root publish \
55
--install-location /opt/func \
66
--scripts pkg/scripts \
77
--identifier func.app \
8-
Output/func_2.2.0_darwin-$1.pkg
8+
Output/func_2.2.1_darwin-$1.pkg

deb/amd64/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: func
2-
Version: 2.2.0
2+
Version: 2.2.1
33
Section: base
44
Priority: optional
55
Architecture: amd64

deb/arm64/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: func
2-
Version: 2.2.0
2+
Version: 2.2.1
33
Section: base
44
Priority: optional
55
Architecture: arm64

0 commit comments

Comments
 (0)