7 lines
93 B
Bash
Executable File
7 lines
93 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cd ./tools || return 1
|
|
gmake || return "$?"
|
|
cd ..
|
|
./tools/mock_file_generator.exe
|