10 lines
128 B
Bash
10 lines
128 B
Bash
|
#!/bin/bash
|
||
|
echo "Cypher init..."
|
||
|
git submodule update --init lexertl
|
||
|
cd lemon
|
||
|
make
|
||
|
cd ../
|
||
|
make
|
||
|
echo "Cypher was initialized."
|
||
|
|