Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update .Net Core SDK and PS version to their latest released versions (
  • Loading branch information
bergmeister authored and alerickson committed Jan 21, 2019
1 parent b87e2b9 commit 12ca098
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions Test/PSL/win10/PSL.json
@@ -1,13 +1,13 @@
{
"PowerShell": {
"displayName": "PowerShell_6.1.1",
"source": "https://github.com/PowerShell/PowerShell/releases/download/v6.1.1/PowerShell-6.1.1-win-x64.msi",
"displayName": "PowerShell_6.1.2",
"source": "https://github.com/PowerShell/PowerShell/releases/download/v6.1.2/PowerShell-6.1.2-win-x64.msi",
"hash": {
"algorithm": "sha512",
"hashCode": "A3C01E75623E40EE03F097B7EBFDD8263D8DF55BFA33EE294FEA372178C5C4E3248A888FA1BD67DBEA3521362CC8A335F520A184D858835506B5456FFBCC7299"
"hashCode": "DD66C1E67BD5F3B74D97A5F9B0764B0D2DB840E9DE52FABD17D975C28CD38046957EB0C0DDDFB76C48E8AEAECDBB1A7C8B77454FA9875A71C7995E13B40944DF"
},
"summary": "Powershell",
"type": "msi",
"version": "6.1.1"
"version": "6.1.2"
}
}
Binary file modified Test/PSL/win81/PSL.json
Binary file not shown.
2 changes: 1 addition & 1 deletion src/bootstrap.ps1
Expand Up @@ -38,7 +38,7 @@ function Start-DotnetBootstrap {
# we currently pin dotnet-cli version, because tool
# is currently migrating to msbuild toolchain
# and requires constant updates to our build process.
[string]$Version = "2.1.500"
[string]$Version = "2.1.503"
)

# Install ours and .NET's dependencies
Expand Down
12 changes: 6 additions & 6 deletions tools/download.sh
Expand Up @@ -8,7 +8,7 @@ trap '
' INT

get_url() {
release=v6.1.1
release=v6.1.2
echo "https://github.com/PowerShell/PowerShell/releases/download/$release/$1"
}

Expand All @@ -24,7 +24,7 @@ case "$OSTYPE" in
sudo yum install -y curl
fi

package=powershell-6.1.1-1.rhel.7.x86_64.rpm
package=powershell-6.1.2-1.rhel.7.x86_64.rpm
;;
ubuntu)
if ! hash curl 2>/dev/null; then
Expand All @@ -34,11 +34,11 @@ case "$OSTYPE" in

case "$VERSION_ID" in
14.04)
https://github.com/PowerShell/PowerShell/releases/download/v6.1.1/powershell_6.1.1-1.ubuntu.14.04_amd64.deb
package=powershell_6.1.1-1.ubuntu.14.04_amd64.deb
https://github.com/PowerShell/PowerShell/releases/download/v6.1.2/powershell_6.1.2-1.ubuntu.14.04_amd64.deb
package=powershell_6.1.2-1.ubuntu.14.04_amd64.deb
;;
16.04)
package=powershell_6.1.1-1.ubuntu.16.04_amd64.deb
package=powershell_6.1.2-1.ubuntu.16.04_amd64.deb
;;
*)
echo "Ubuntu $VERSION_ID is not supported!" >&2
Expand All @@ -52,7 +52,7 @@ case "$OSTYPE" in
;;
darwin*)
# We don't check for curl as macOS should have a system version
package=powershell-6.1.1-osx-x64.pkg
package=powershell-6.1.2-osx-x64.pkg
;;
*)
echo "$OSTYPE is not supported!" >&2
Expand Down

0 comments on commit 12ca098

Please sign in to comment.