14 lines
187 B
Bash
Executable file
14 lines
187 B
Bash
Executable file
#!/bin/bash
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
PREVIOUS_DIR=$(pwd)
|
|
|
|
cd $DIR
|
|
|
|
./lightclean.sh
|
|
|
|
emmake make -j12
|
|
|
|
./reloadbrowser.sh
|
|
|
|
cd $PREVIOUS_DIR
|