Skip to content

Commit

Permalink
deploy: cda19a4
Browse files Browse the repository at this point in the history
  • Loading branch information
milesj committed Mar 6, 2024
1 parent 6125187 commit 0b49987
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 3 additions & 1 deletion install/proto.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,9 @@ Remove-Item $DownloadFile -Force

# Run setup script to update shells

$env:PROTO_LOG = "error"
if (-not $env:PROTO_LOG) {
$env:PROTO_LOG = "error"
}

# Versions >= 0.30 handle the messaging
if ($Version -eq "latest" -or $Version -notmatch '^0\.[0-2]{1}[0-9]{1}\.') {
Expand Down
5 changes: 4 additions & 1 deletion install/proto.sh
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,10 @@ rm -rf "$download_file" "$temp_dir"

# Run setup script to update shells

export PROTO_LOG=error
if [[ -z "$PROTO_LOG" ]]; then
export PROTO_LOG=error
fi

version_pattern="^0\.[0-2]{1}[0-9]{1}\."

# Versions >= 0.30 handle the messaging
Expand Down
2 changes: 1 addition & 1 deletion proto.html

Large diffs are not rendered by default.

0 comments on commit 0b49987

Please sign in to comment.