8 lines
128 B
Python
8 lines
128 B
Python
|
#! /bin/bash
|
||
|
FILE="$(realpath "${BASH_SOURCE[0]}")"
|
||
|
DIRECTORY="$(dirname "${FILE}")"
|
||
|
|
||
|
cd "${DIRECTORY}"
|
||
|
make clean
|
||
|
make publish
|