Skip to content

Update README.rst to fix checksum #477

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions scripts/install/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,6 @@ The order of precedence in which this scripts applies input parameters is as fol

Checksums
-----------
install.sh bb5eda7c1e02cbad4e3c579ea84165e51e04a37418e249919cac91e13ecfe549
install.ps1 9ca1cd79b3309bdb4513a0a068228a67ac85c1438cbee6b4cb034af0f138a09b
install.py adf81319b2400caae72320f6cdedaef380c6529912102961f1688a722258f3d8
install.sh bb5eda7c1e02cbad4e3c579ea84165e51e04a37418e249919cac91e13ecfe549\n
install.ps1 9ca1cd79b3309bdb4513a0a068228a67ac85c1438cbee6b4cb034af0f138a09b\n
install.py adf81319b2400caae72320f6cdedaef380c6529912102961f1688a722258f3d8\n
4 changes: 2 additions & 2 deletions scripts/install/install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ if ([System.Enum]::GetNames('System.Net.SecurityProtocolType') -Contains 'Tls12'
}


$PythonInstallScriptUrl = "https://raw.githubusercontent.com/oracle/oci-cli/v3.2.1/scripts/install/install.py"
$FallbackPythonInstallScriptUrl = "https://raw.githubusercontent.com/oracle/oci-cli/v2.22.0/scripts/install/install.py"
$PythonInstallScriptUrl = "https://raw.githubusercontent.com/oracle/oci-cli/v3.3.0/scripts/install/install.py"
$FallbackPythonInstallScriptUrl = "https://raw.githubusercontent.com/oracle/oci-cli/v3.2.1/scripts/install/install.py"
$PythonVersionToInstall = "3.8.5" # version of Python to install if none exists
$MinValidPython3Version = "3.6.0" # minimum required version of Python 3 on system

Expand Down
4 changes: 2 additions & 2 deletions scripts/install/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
# individual params > accept_all_defaults > interactive inputs
#
SHELL_INSTALL_SCRIPT_URL="https://raw.githubusercontent.com/oracle/oci-cli/master/scripts/install/install.sh"
INSTALL_SCRIPT_URL="https://raw.githubusercontent.com/oracle/oci-cli/v3.2.1/scripts/install/install.py"
FALLBACK_INSTALL_SCRIPT_URL="https://raw.githubusercontent.com/oracle/oci-cli/v2.22.0/scripts/install/install.py"
INSTALL_SCRIPT_URL="https://raw.githubusercontent.com/oracle/oci-cli/v3.3.0/scripts/install/install.py"
FALLBACK_INSTALL_SCRIPT_URL="https://raw.githubusercontent.com/oracle/oci-cli/v3.2.1/scripts/install/install.py"
_TTY=/dev/tty
NO_TTY_REQUIRED=false

Expand Down