15 lines
293 B
Bash
15 lines
293 B
Bash
#!/bin/bash
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
|
|
rm -rf /tmp/followtherider*
|
|
cp -rfapv ../followtherider /tmp
|
|
cd /tmp/followtherider
|
|
rm -rf .git
|
|
rm -rf _publish
|
|
cd /tmp/
|
|
zip followtherider.zip -r followtherider
|
|
cd $DIR
|
|
mv /tmp/followtherider.zip _publish
|
|
|
|
|