File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -156,23 +156,23 @@ def install(dest_dir, print_welcome=False):
156
156
install_rez_from_source (dest_dir )
157
157
158
158
# patch the rez binaries
159
- patch_rez_binaries (dest_dir )
159
+ # patch_rez_binaries(dest_dir)
160
160
161
161
# copy completion scripts into virtualenv
162
162
completion_path = copy_completion_scripts (dest_dir )
163
163
164
164
# mark virtualenv as production rez install. Do not remove - rez uses this!
165
165
virtualenv_bin_dir = get_virtualenv_bin_dir (dest_dir )
166
166
dest_bin_dir = os .path .join (virtualenv_bin_dir , "rez" )
167
- validation_file = os .path .join (dest_bin_dir , ".rez_production_install" )
168
- with open (validation_file , 'w' ) as f :
169
- f .write (_rez_version )
167
+ # validation_file = os.path.join(dest_bin_dir, ".rez_production_install")
168
+ # with open(validation_file, 'w') as f:
169
+ # f.write(_rez_version)
170
170
171
171
# done
172
172
if print_welcome :
173
173
print ()
174
174
print ("SUCCESS!" )
175
- rez_exe = os .path .realpath (os .path .join (dest_bin_dir , "rez" ))
175
+ rez_exe = os .path .realpath (os .path .join (dest_bin_dir ))
176
176
print ("Rez executable installed to: %s" % rez_exe )
177
177
178
178
try :
Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ def run(self):
120
120
121
121
prod_install_path = os .path .join (tmpdir , ".rez_production_install" )
122
122
with open (prod_install_path , "w" ) as fd :
123
- fd .write ("# Production install installed with pip" )
123
+ fd .write (_rez_version )
124
124
125
125
scripts .append (prod_install_path )
126
126
You can’t perform that action at this time.
0 commit comments