blob: f9b9d2be52ceb9a98f6835d5449cdba9e1ced324 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/bash
[ ! -d "smenu" ] && git submodule init && git submodule update && echo skit
[ -f "smenu/smenu" ] && echo "Smenu has already been built. There's nothing more to set up" && exit
cd smenu
./build.sh
cd ..
|