7 lines
95 B
Bash
Executable File
7 lines
95 B
Bash
Executable File
#!/bin/bash
|
|
|
|
SCRIPT_DIR=$(cd $(dirname $0); pwd)
|
|
pushd ./build
|
|
python -m http.server 8000
|
|
popd
|