fix: Missing ~/.local/share/opencode/bin directory causes misleading … (#1860)

This commit is contained in:
Aiden Cline
2025-08-12 08:54:20 -05:00
committed by opencode
parent 0835170224
commit f12d470b33

View File

@@ -25,6 +25,7 @@ await Promise.all([
fs.mkdir(Global.Path.config, { recursive: true }), fs.mkdir(Global.Path.config, { recursive: true }),
fs.mkdir(Global.Path.state, { recursive: true }), fs.mkdir(Global.Path.state, { recursive: true }),
fs.mkdir(Global.Path.log, { recursive: true }), fs.mkdir(Global.Path.log, { recursive: true }),
fs.mkdir(Global.Path.bin, { recursive: true }),
]) ])
const CACHE_VERSION = "7" const CACHE_VERSION = "7"