Skip to content

Commit

Permalink
adds upload_package.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
zackees committed Jan 15, 2024
1 parent 03dfec9 commit eb478a5
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions upload_package.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/bin/bash

# Check the operating system
if [[ "$OSTYPE" == "linux-gnu"* ]] || [[ "$OSTYPE" == "darwin"* ]]; then
# Linux or Mac OS
python3 setup.py upload
else
# Other OS (like Windows)
python setup.py upload
fi

0 comments on commit eb478a5

Please sign in to comment.