FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
speech_recognition/make-release.sh at master · PythonNexus/speech_recognition · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
PythonNexus
/
speech_recognition
Public
forked from
Uberi/speech_recognition
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
speech_recognition
/
make-release.sh
Copy path
More file actions
More file actions
Latest commit
History
History
History
12 lines (9 loc) · 570 Bytes
Breadcrumbs
speech_recognition
/
make-release.sh
Copy path
File metadata and controls
12 lines (9 loc) · 570 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
#!
/usr/bin/env bash
#
set up bash to handle errors more aggressively - a "strict mode" of sorts
set
-e
#
give an error if any command finishes with a non-zero exit code
set
-u
#
give an error if we reference unset variables
set
-o pipefail
#
for a pipeline, if any of the commands fail with a non-zero exit code, fail the entire pipeline with that exit code
echo
"
Making release for SpeechRecognition-
$1
"
python setup.py bdist_wheel
gpg --detach-sign -a dist/SpeechRecognition-
$1
-
*
.whl
twine upload dist/SpeechRecognition-
$1
-
*
.whl dist/SpeechRecognition-
$1
-
*
.whl.asc
Back
|
FazBrowse Home
|
New Git URL