Change-Id: I94f4f46788df2ab42ea5958d099c48016543309c
echo "5. Making rootstrap"
./make_rootstrap.sh -C $CONFIG_FILE -c -t ./rs_tbb
+if [ $? != 0 ]
+then
+ echo "Error to make rootstrap!!!!!!"
+ exit 3
+fi
+
echo "6. Making pakcage"
./package_rootstrap.sh -C $CONFIG_FILE
+if [ $? != 0 ]
+then
+ echo "Error to make package!!!!!!"
+ exit 4
+fi
echo "7. Merging all files"
./package_all.sh $EXT_NAME $VERSION
+if [ $? != 0 ]
+then
+ echo "Error to make sdk extension!!!!!!"
+ exit 5
+fi
+