We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42f7c15 commit 103fa3bCopy full SHA for 103fa3b
experiments/list_unsupported.sh
@@ -1,6 +1,11 @@
1
#!/bin/sh
2
+
3
+# gnat2goto on the path?
4
if ! command -v gnat2goto > /dev/null; then
5
echo >&2 "gnat2goto not on PATH!"
6
+ gnat2goto_bin=$(cd "$(dirname ${0})/../gnat2goto/install/bin" 2>/dev/null && pwd)
7
+ echo >&2 "Suggested adding gnat2goto to your PATH with the following command:"
8
+ echo >&2 " export PATH=\"${gnat2goto_bin}:\${PATH}\""
9
exit 1
10
fi
11
0 commit comments