mirror of
https://github.com/trevorhobenshield/twitter-api-client.git
synced 2025-12-19 18:12:11 -05:00
11 lines
208 B
Bash
11 lines
208 B
Bash
#!/usr/bin/bash
|
|
|
|
if [ -d '../dist' ] ; then
|
|
rm -r ../dist
|
|
fi
|
|
if [ -d '../build' ] ; then
|
|
rm -r ../build
|
|
fi
|
|
if [ -d '../twitter_api_client.egg-info' ] ; then
|
|
rm -r ../twitter_api_client.egg-info
|
|
fi |