7 lines
No EOL
155 B
Bash
Executable file
7 lines
No EOL
155 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ ! -z "$1" ]; then
|
|
workspaces="-workspaces $1"
|
|
fi
|
|
|
|
exec acme-lsp -server '([/\\]go\.mod)|([/\\]go\.sum)|(\.go)$:gopls serve' ${workspaces} |