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.
14 lines
293 B
14 lines
293 B
#!/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
|
|
|
|
|
|
|