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:
2022-12-24 17:20:28 -07:00
parent 176de76581
commit 08e8104cd9
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1,2 +1,2 @@
*.toml *.toml
working _working
+1 -1
View File
@@ -1,3 +1,3 @@
working _working
server server
server.toml server.toml
+1 -1
View File
@@ -10,4 +10,4 @@ services:
- "..:/build" - "..:/build"
- "../server.toml:/root/.config/cursorius/server.toml" - "../server.toml:/root/.config/cursorius/server.toml"
- "/var/run/docker.sock:/var/run/docker.sock" - "/var/run/docker.sock:/var/run/docker.sock"
- "../working/go:/go-src" - "../_working/go:/go"
+1 -1
View File
@@ -2,7 +2,7 @@
set -e set -e
mkdir -p working mkdir -p _working
case $1 in case $1 in
"default") "default")