File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
.cloudbuild/library_generation
hermetic_build/library_generation Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ ENV HOME=/home
6262ENV OS_ARCHITECTURE="linux-x86_64"
6363
6464# install OS tools
65- RUN apk update && apk add unzip curl rsync openjdk11 jq bash nodejs npm git uuidgen
65+ RUN apk update && apk add unzip curl rsync openjdk11 jq bash nodejs npm git
6666
6767SHELL [ "/bin/bash" , "-c" ]
6868
Original file line number Diff line number Diff line change 114114if [ -z " ${os_architecture} " ]; then
115115 os_architecture=$( detect_os_architecture)
116116fi
117-
118- temp_destination_path=" ${output_folder} /temp_preprocessed/$( uuidgen ) "
117+ random_suffix= $( LC_ALL=C tr -dc ' a-zA-Z0-9 ' < /dev/urandom | fold -w 10 | head -n 1 )
118+ temp_destination_path=" ${output_folder} /temp_preprocessed/${random_suffix} "
119119mkdir -p " ${output_folder} /${destination_path} "
120120if [ -d " ${temp_destination_path} " ]; then
121121 # we don't want the preprocessed sources of a previous run
You can’t perform that action at this time.
0 commit comments