Skip to content

Commit 6b57b4e

Browse files
committed
Clean up and fix typos
1 parent 3e0efb6 commit 6b57b4e

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

cpp/cpp_easy_setup.sh

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,10 @@ cmake_home="cmake-${os}-${arch}"
6767

6868
build_dir="build"
6969
mkdir -p "${build_dir}"
70-
# cd "${build_dir}"
7170

72-
cmake_build_dir=".cmake"
73-
mkdir -p "${cmake_build_dir}"
74-
cd "${cmake_build_dir}"
71+
cmake_dir=".cmake"
72+
mkdir -p "${cmake_dir}"
73+
cd "${cmake_dir}"
7574

7675
if ! [ -f "${cmake_expected_archive_file}" ]
7776
then
@@ -98,7 +97,7 @@ fi
9897

9998
cd ..
10099

101-
cmake_bin_path="${cmake_build_dir}/${cmake_home}/${cmake_bin_dir}"
100+
cmake_bin_path="${cmake_dir}/${cmake_home}/${cmake_bin_dir}"
102101

103102
eval ${cmake_bin_path}/${cmake} "${cmake_generator_options}" -S . -B "${build_dir}"
104103
${cmake_bin_path}/${cmake} --build "${build_dir}" --config Debug

tcr/.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Below files and directories are automatically created
2-
# by tcr.sh and sould not be committed to this repository
2+
# by tcr.sh and should not be committed to this repository
33

44
bin/**
55
doc/**

0 commit comments

Comments
 (0)