##// END OF EJS Templates
packaging: reference proper output directory...
Gregory Szorc -
r48696:1e6cb23c stable
parent child Browse files
Show More
@@ -136,13 +136,8 b' def create_pyoxidizer_install_layout('
136
136
137 run_pyoxidizer(source_dir, build_dir, target_triple)
137 run_pyoxidizer(source_dir, build_dir, target_triple)
138
138
139 if "windows" in target_triple:
140 target = "app_windows"
141 else:
142 target = "app_posix"
143
144 build_dir = (
139 build_dir = (
145 source_dir / "build" / "pyoxidizer" / target_triple / "release" / target
140 source_dir / "build" / "pyoxidizer" / target_triple / "release" / "app"
146 )
141 )
147
142
148 if out_dir.exists():
143 if out_dir.exists():
General Comments 0
You need to be logged in to leave comments. Login now