Skip to content
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

Resolve linting, fix appveyor tests error #2148

Merged
merged 1 commit into from
Mar 22, 2018
Merged
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
Resolve linting, fix appveyor tests error
  • Loading branch information
chawyehsu authored Mar 22, 2018
commit ae23c64d344158904c93388ae8ef71e92e17c151
2 changes: 1 addition & 1 deletion libexec/scoop-update.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ function update_scoop() {
write-host "Updating Scoop..."
$last_update = $(last_scoop_update).ToString('s')
$show_update_log = get_config "show_update_log"
if($show_update_log -eq $null) {
if($null -eq $show_update_log) {
$show_update_log = $true
}
$currentdir = fullpath $(versiondir 'scoop' 'current')
Expand Down