We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a24cc71 commit 664d976Copy full SHA for 664d976
hermetic_build/library_generation/generate_library.sh
@@ -114,10 +114,8 @@ fi
114
if [ -z "${os_architecture}" ]; then
115
os_architecture=$(detect_os_architecture)
116
fi
117
-random_suffix=$(LC_ALL=C tr -dc 'a-zA-Z' < /dev/urandom | fold -w 20 | head -n 1)
118
-echo "1"
+random_suffix=$(LC_ALL=C tr -dc 'a-zA-Z' < /dev/urandom | fold -w 20 | awk 'NR==1 {print; exit}')
119
temp_destination_path="${output_folder}/temp_preprocessed/${random_suffix}"
120
-echo "2"
121
mkdir -p "${output_folder}/${destination_path}"
122
if [ -d "${temp_destination_path}" ]; then
123
# we don't want the preprocessed sources of a previous run
0 commit comments