We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 694a401 commit 258efb1Copy full SHA for 258efb1
bin/upload_package
@@ -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