must copy wheel to olddir when -w flag is not given

This commit is contained in:
Axel Kohlmeyer
2023-07-03 09:53:59 -04:00
parent b7bfc86eaf
commit d23cebf9f1

View File

@ -11,7 +11,7 @@ independently and used to build the wheel without installing it.
""" """
from __future__ import print_function from __future__ import print_function
import sys,os,shutil,glob,subprocess import sys, os, shutil, glob, subprocess
from argparse import ArgumentParser from argparse import ArgumentParser
parser = ArgumentParser(prog='install.py', parser = ArgumentParser(prog='install.py',
@ -105,12 +105,12 @@ os.system(sys.executable + ' makewheel.py')
for wheel in glob.glob('lammps-*.whl'): for wheel in glob.glob('lammps-*.whl'):
if args.wheeldir: if args.wheeldir:
shutil.copy(wheel, args.wheeldir) shutil.copy(wheel, args.wheeldir)
else:
print('wheel = ', wheel) shutil.copy(wheel, olddir)
# remove temporary folders and files # remove temporary folders and files
os.chdir(olddir) os.chdir(olddir)
shutil.rmtree('build-python',True) shutil.rmtree('build-python', True)
# stop here if we were asked not to install the wheel we created # stop here if we were asked not to install the wheel we created
if args.noinstall: if args.noinstall: