Skip to content

Commit

Permalink
Merge pull request coreybutler#356 from s-h-a-d-o-w/patch-1
Browse files Browse the repository at this point in the history
Fixes coreybutler#252 - Need to manually remove folder on nvm uninstall
  • Loading branch information
Bardur Pihl authored Jul 10, 2018
2 parents 24c57b8 + 50cef2e commit 550d7ce
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/nvm/arch/arch.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,12 @@ func SearchBytesInFile( path string, match string, limit int) bool {
if bit[0] == toMatch[j] {
j++;
if (j >= len(toMatch)) {
file.Close();
return true;
}
}
}
file.Close();
return false;
}

Expand Down

0 comments on commit 550d7ce

Please sign in to comment.