7 lines
162 B
Bash
Executable File
7 lines
162 B
Bash
Executable File
#!/bin/bash
|
|
# Wrapper script to start the Actions language server
|
|
|
|
DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
|
|
exec node "$DIR/../dist/server-bundled.cjs" --stdio "$@"
|