Skip to content

Commit ab82fa0

Browse files
committed
more thorough password redeeming
1 parent f4a8a38 commit ab82fa0

6 files changed

Lines changed: 9 additions & 0 deletions

File tree

scripts/third_party_clone/ceres/install_ceres_solver.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,9 @@ def run(self):
4848
self.pw.redeem()
4949
num_cpu_cores = multiprocessing.cpu_count()
5050
os.system("make -j" + str(num_cpu_cores-1))
51+
self.pw.redeem()
5152
os.system("make test")
53+
self.pw.redeem()
5254
os.system("sudo make install")
5355

5456
# Delete source files

scripts/third_party_clone/cpp_utils.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,10 @@ def __install_spdlog(self):
2929
os.chdir(path + "/../build")
3030
os.system("cmake ../spdlog -DCMAKE_INSTALL_PREFIX=../install")
3131

32+
self.pw.redeem()
3233
num_cpu_cores = multiprocessing.cpu_count()
3334
os.system("make -j" + str(num_cpu_cores - 1))
35+
self.pw.redeem()
3436
os.system("sudo make install")
3537

3638
os.chdir("../../../")

scripts/third_party_clone/eigen/install_eigen.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ def run(self):
4141
self.pw.redeem()
4242
num_cpu_cores = multiprocessing.cpu_count()
4343
os.system("make -j" + str(num_cpu_cores-1))
44+
self.pw.redeem()
4445
os.system("sudo make install")
4546

4647
# Delete source files

scripts/third_party_clone/gtsam/install_gtsam.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,9 @@ def run(self):
4444
self.pw.redeem()
4545
num_cpu_cores = multiprocessing.cpu_count()
4646
os.system("make check -j" + str(num_cpu_cores-1))
47+
self.pw.redeem()
4748
os.system("make -j" + str(num_cpu_cores-1))
49+
self.pw.redeem()
4850
os.system("sudo make install")
4951

5052
# Delete source files

scripts/third_party_clone/opencv/install_opencv.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ def run(self):
5353
self.pw.redeem()
5454
num_cpu_cores = multiprocessing.cpu_count()
5555
os.system("make -j" + str(num_cpu_cores-1))
56+
self.pw.redeem()
5657
os.system("sudo make install")
5758

5859
# Delete source files

scripts/third_party_clone/pcl/install_pcl.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ def run(self):
4949
self.pw.redeem()
5050
num_cpu_cores = multiprocessing.cpu_count()
5151
os.system("make -j" + str(num_cpu_cores-1))
52+
self.pw.redeem()
5253
os.system("sudo make install -j" + str(num_cpu_cores-1))
5354

5455
# Delete source files

0 commit comments

Comments
 (0)