Skip to content

Commit 2e1896a

Browse files
committed
Merge branch 'master' into devel
2 parents 89bfaae + 39ae717 commit 2e1896a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build_pkg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ class pkg():
131131

132132
with open("stdeb.cfg", "w") as f:
133133
f.write(stdcfg)
134-
if subprocess.call('/usr/bin/python3 setup.py --command-packages=stdeb.command bdist_deb', shell=True) == 0 and \
134+
if subprocess.call('/usr/bin/python3.5 setup.py --command-packages=stdeb.command bdist_deb', shell=True) == 0 and \
135135
os.path.exists(os.path.join("deb_dist", "python3-multibootusb_" + self.version + "-1_all.deb")):
136136
try:
137137
shutil.copy2(os.path.join("deb_dist", "python3-multibootusb_" + self.version + "-1_all.deb"),
@@ -159,7 +159,7 @@ class pkg():
159159
"Requires = " + require)
160160
with open("setup.cfg", "w") as f:
161161
f.write(setup_cfg)
162-
if subprocess.call('/usr/bin/python3 setup.py bdist_rpm', shell=True) == 0 and \
162+
if subprocess.call('/usr/bin/python3.5 setup.py bdist_rpm', shell=True) == 0 and \
163163
os.path.exists(os.path.join("dist", "multibootusb-" + self.version + "-1.noarch.rpm")):
164164
if self.pkg_name == 'suse':
165165
package = "multibootusb-" + self.version + "-1suse.noarch.rpm"

0 commit comments

Comments
 (0)