You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
293 B
15 lines
293 B
4 years ago
|
#!/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
|
||
|
|
||
|
|