Skip to content

Commit 1dd2b9c

Browse files
authored
Merge pull request #95 from paul-hummel-oracle/master
Update install scripts with new commit point.
2 parents 6dc61e3 + 590d765 commit 1dd2b9c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

scripts/install/install.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ if ([System.Enum]::GetNames('System.Net.SecurityProtocolType') -Contains 'Tls12'
2626
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]'Ssl3,Tls,Tls11,Tls12';
2727
}
2828

29-
$PythonInstallScriptUrl = "https://raw.githubusercontent.com/oracle/oci-cli/5657b833bfcf16298d43fb6f0204cd66173c5ac0/scripts/install/install.py"
29+
$PythonInstallScriptUrl = "https://raw.githubusercontent.com/oracle/oci-cli/6dc61e3b5fd2781c5afff2decb532c24969fa6bf/scripts/install/install.py"
3030
$PythonVersionToInstall = "3.6.2" # version of Python to install if none exists
3131
$MinValidPython2Version = "2.7.5" # minimum required version of Python 2 on system
3232
$MinValidPython3Version = "3.5.0" # minimum required version of Python 3 on system

scripts/install/install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# This value will only be used on systems with 'yum' where a valid version of Python is not present on the system PATH.
1111
#
1212
SHELL_INSTALL_SCRIPT_URL="https://raw.githubusercontent.com/oracle/oci-cli/master/scripts/install/install.sh"
13-
INSTALL_SCRIPT_URL="https://raw.githubusercontent.com/oracle/oci-cli/5657b833bfcf16298d43fb6f0204cd66173c5ac0/scripts/install/install.py"
13+
INSTALL_SCRIPT_URL="https://raw.githubusercontent.com/oracle/oci-cli/6dc61e3b5fd2781c5afff2decb532c24969fa6bf/scripts/install/install.py"
1414
_TTY=/dev/tty
1515

1616
# detect if the script is able to prompt for user input from stdin
@@ -140,4 +140,4 @@ if [ "$ACCEPT_ALL_DEFAULTS" = true ]; then
140140
install_args="--accept-all-defaults"
141141
fi
142142

143-
$python_exe $install_script $install_args < $_TTY
143+
$python_exe $install_script $install_args < $_TTY

0 commit comments

Comments
 (0)