diff --git a/master.cfg b/master.cfg index 2578de5..25a5cab 100644 --- a/master.cfg +++ b/master.cfg @@ -279,7 +279,7 @@ def lib_svn_step(dir): def rsync_step(id, branch, rsync_script): return ShellCommand(name='rsync', - command=['python', rsync_script, id, branch], + command=['python3', rsync_script, id, branch], description='uploading', descriptionDone='uploaded', workdir='install') @@ -310,11 +310,11 @@ def generic_builder(id, libdir='', branch='', rsync=False): f.addStep(git_step(branch)) f.addStep(git_submodules_update()) - f.addStep(Compile(command=['python', compile_script, id], timeout=3600)) - f.addStep(Test(command=['python', test_script, id])) + f.addStep(Compile(command=['python3', compile_script, id], timeout=3600)) + f.addStep(Test(command=['python3', test_script, id])) f.addStep(ShellCommand( name='package', - command=['python', + command=['python3', pack_script, id, branch or Interpolate('%(src:blender:branch)s')],