Change docker go cache dir to _working

This was previously breaking the go tooling as the working directly was
being searched by the lsp and go mod tidy. The go tools ignore
directories that begin with underscores.
This commit is contained in:
restitux 2022-12-24 17:20:28 -07:00
parent 176de76581
commit 08e8104cd9
4 changed files with 4 additions and 4 deletions

View File

@ -1,2 +1,2 @@
*.toml
working
_working

2
.gitignore vendored
View File

@ -1,3 +1,3 @@
working
_working
server
server.toml

View File

@ -10,4 +10,4 @@ services:
- "..:/build"
- "../server.toml:/root/.config/cursorius/server.toml"
- "/var/run/docker.sock:/var/run/docker.sock"
- "../working/go:/go-src"
- "../_working/go:/go"

View File

@ -2,7 +2,7 @@
set -e
mkdir -p working
mkdir -p _working
case $1 in
"default")