You've already forked ada_language_server
mirror of
https://github.com/AdaCore/ada_language_server.git
synced 2026-02-12 12:45:50 -08:00
11 lines
254 B
Bash
Executable File
11 lines
254 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
if [ "$OS" = "Windows_NT" ]; then
|
|
PYTHON=python.exe
|
|
else
|
|
PYTHON=python3
|
|
fi
|
|
|
|
# This is a convenience command-line driver made for development mode
|
|
$PYTHON ./run-tests --failure-exit-code 1 --loglevel INFO --show-error-output $@
|