Skip to content

Commit e8aa6cd

Browse files
Fixed package path
1 parent e5b0f4a commit e8aa6cd

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tools/make_package.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,16 +102,16 @@ def build_on_remote_host(self):
102102

103103
# Retrieve the built package
104104
if self.args.freebsd == 11:
105-
src = "{u}@{h}:~/build/pfsense-api/pfSense-pkg-API/pfSense-pkg-API/pfSense-pkg-API-{v}{r}.txz"
106-
src = cmd.format(
105+
src = "{u}@{h}:~/build/pfsense-api/pfSense-pkg-API/pfSense-pkg-API-{v}{r}.txz"
106+
src = src.format(
107107
u=self.args.username,
108108
h=self.args.host,
109109
v=self.port_version,
110110
r="_" + self.port_revision if self.port_revision != "0" else ""
111111
)
112112
self.run_scp_cmd(src, ".")
113113
else:
114-
src = "{u}@{h}:~/build/pfsense-api/pfSense-pkg-API/pfSense-pkg-API/work/pkg/pfSense-pkg-API-{v}{r}.txz"
114+
src = "{u}@{h}:~/build/pfsense-api/pfSense-pkg-API/work/pkg/pfSense-pkg-API-{v}{r}.txz"
115115
src = src.format(
116116
u=self.args.username,
117117
h=self.args.host,

0 commit comments

Comments
 (0)