We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f3cb6a commit c55e0e6Copy full SHA for c55e0e6
scripts/install/install.sh
@@ -250,7 +250,7 @@ if [ "$OFFLINE_INSTALL" = true ]; then
250
fi
251
252
if [ "${install_script}" == "" ];then
253
- install_script=$(mktemp -t oci_cli_install_tmp_XXXX) || exit
+ install_script=$(mktemp -t oci_cli_install_tmp_XXXXXX) || exit
254
echo "Downloading Oracle Cloud Infrastructure CLI install script from $INSTALL_SCRIPT_URL to $install_script."
255
curl -# -f $INSTALL_SCRIPT_URL > $install_script
256
if [ $? -ne 0 ]; then
@@ -319,7 +319,7 @@ fi
319
320
if [ "$need_to_install_python" = true ]; then
321
# Many docker containers won't have sudo installed since they are already run as root.
322
- if command -v dnf
+ if command -v dnf
323
then
324
echo "Attempting to install Python 3."
325
$sudo_cmd dnf install $yum_opts python3
0 commit comments