tarjoilija / zgen

A lightweight and simple plugin manager for ZSH
BSD 2-Clause "Simplified" License
1.49k stars 98 forks source link

Use cksum instead of shasum #99

Closed docwhat closed 5 years ago

docwhat commented 6 years ago

cksum is a POSIX standard and therefor on most, if not all, Unix flavors.

While it has more collisions than sha256, it is faster. And the collisions don't matter much for checking if the cache is old or not.

Closes: #72

tarjoilija commented 5 years ago

Thank you.