10 lines
147 B
Plaintext
10 lines
147 B
Plaintext
|
#!/bin/bash
|
||
|
#----------------------------------------------------------------------
|
||
|
|
||
|
set -o errexit
|
||
|
|
||
|
|
||
|
# clean out the local dist dir
|
||
|
rm -f dist/*
|
||
|
|