Remove uninitialized variable error in baremetal.sh
diff --git a/scripts/baremetal.sh b/scripts/baremetal.sh
index 8024617..9ab40aa 100755
--- a/scripts/baremetal.sh
+++ b/scripts/baremetal.sh
@@ -264,6 +264,7 @@
     echo "Done"
 
     # Extract callgraphs from source files directly
+    RAM_CALLGRAPH_OUT=""
     if [ -x "$(command -v cflow)" ]; then
         RAM_CALLGRAPH_OUT="ram_cflow__${date}__$NAME"
         cflow library/*.c > $RAM_CALLGRAPH_OUT 2> /dev/null