Skip to content

Commit c55e0e6

Browse files
committed
Update install.sh script to use longer template name
Signed-off-by: ProbstenHias <[email protected]>
1 parent 0f3cb6a commit c55e0e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/install/install.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ if [ "$OFFLINE_INSTALL" = true ]; then
250250
fi
251251

252252
if [ "${install_script}" == "" ];then
253-
install_script=$(mktemp -t oci_cli_install_tmp_XXXX) || exit
253+
install_script=$(mktemp -t oci_cli_install_tmp_XXXXXX) || exit
254254
echo "Downloading Oracle Cloud Infrastructure CLI install script from $INSTALL_SCRIPT_URL to $install_script."
255255
curl -# -f $INSTALL_SCRIPT_URL > $install_script
256256
if [ $? -ne 0 ]; then
@@ -319,7 +319,7 @@ fi
319319

320320
if [ "$need_to_install_python" = true ]; then
321321
# Many docker containers won't have sudo installed since they are already run as root.
322-
if command -v dnf
322+
if command -v dnf
323323
then
324324
echo "Attempting to install Python 3."
325325
$sudo_cmd dnf install $yum_opts python3

0 commit comments

Comments
 (0)