Commit afe2e68b authored by zora tung's avatar zora tung Committed by GitHub
Browse files

Merge pull request #1438 from tensorflow/remove_no_preserve

Remove --no-preserve=all build_pip_package.py
parents 4cc1fa0f b7ba040e
...@@ -63,13 +63,12 @@ def main(): ...@@ -63,13 +63,12 @@ def main():
# Copy the files. # Copy the files.
subprocess.check_call([ subprocess.check_call([
"cp", "-r", "cp", "-r", os.path.join(base_dir, "dragnn"), os.path.join(
"--no-preserve=all", os.path.join(base_dir, "dragnn"), os.path.join(
base_dir, "syntaxnet"), tmp_packaging base_dir, "syntaxnet"), tmp_packaging
]) ])
if args.include_tensorflow: if args.include_tensorflow:
subprocess.check_call( subprocess.check_call(
["cp", "-r", "--no-preserve=all", tensorflow_dir, tmp_packaging]) ["cp", "-r", tensorflow_dir, tmp_packaging])
shutil.copy( shutil.copy(
os.path.join(base_dir, "dragnn/tools/oss_setup.py"), os.path.join(base_dir, "dragnn/tools/oss_setup.py"),
os.path.join(tmp_packaging, "setup.py")) os.path.join(tmp_packaging, "setup.py"))
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment