File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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"
You can’t perform that action at this time.
0 commit comments