Skip to content

Commit bd49509

Browse files
committed
Fix typo
1 parent 3297d5e commit bd49509

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

store.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ func (s *PHPStore) fallbackVersion(warning string) (*Version, string, string, er
156156
// loadVersions returns all available PHP versions on this machine
157157
func (s *PHPStore) loadVersions() {
158158
// disk cache?
159-
cache := filepath.Join(s.configDir, "php_versions_2.json")
159+
cache := filepath.Join(s.configDir, "php_versions.json")
160160
if _, err := os.Stat(cache); err == nil {
161161
if contents, err := ioutil.ReadFile(cache); err == nil {
162162
var vs versions

0 commit comments

Comments
 (0)