Skip to content
Snippets Groups Projects
Commit 9ac4c7b1 authored by Andre Maroneze's avatar Andre Maroneze
Browse files

[frama-c-script] fix flamegraph command

Adding option `-u` to frama-c-script led to an "unbound variable" error when
running `frama-c-script flamegraph`.
parent b30e3000
No related branches found
No related tags found
No related merge requests found
...@@ -195,7 +195,7 @@ flamegraph() { ...@@ -195,7 +195,7 @@ flamegraph() {
</body> </body>
</html> </html>
EOF EOF
if [ -z "$NOGUI" ]; then if [ -z "${NOGUI-}" ]; then
open_file "$out_html" open_file "$out_html"
fi fi
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment