Skip to content

Commit 258efb1

Browse files
Add upload_package script.
1 parent 694a401 commit 258efb1

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

bin/upload_package

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#!/bin/bash
2+
3+
# get the directory this file is stored in
4+
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
5+
6+
# push current directory onto stack
7+
# and move to this file's directory
8+
pushd $DIR
9+
10+
# move up to the parent
11+
cd ..
12+
13+
# run our test
14+
python setup.py sdist bdist_wininst upload
15+
16+
17+
# return our path to its original state
18+
popd
19+

0 commit comments

Comments
 (0)