blob: 096275d103bfa9b88f5d5690f9cced0aa599e118 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
# build and test the fun library using the makefile at /src
make clean
make
make install
./testfun
# test.sce runs in cli mode, no gui prompts allowed while using builder.sce
# removed the tbx_builder_gateway(toolbox_dir) and tbx_build_localization(toolbox_dir) funciton calls from buider.sce
cd ..
sed -i '37d' ./builder.sce
sed -i '40,41d' ./builder.sce
|