Skip to content

Commit

Permalink
added client IOMMU check
Browse files Browse the repository at this point in the history
  • Loading branch information
vince-weka committed Aug 21, 2023
1 parent d229a0d commit 9f85dc2
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions weka_upgrade_checker/pyinstall.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# this file uses pyinstaller to create the binary tarball that is used to deploy the tool binary
# this allows the tool binary to be deployed without installing python and other required python packages
#
TOOL=`basename $PWD`
MAIN=$TOOL.py
TARGET=tarball/$TOOL

pyinstaller --onefile $MAIN

mkdir -p $TARGET
cp dist/$TOOL $TARGET

cd tarball
tar cvzf ../${TOOL}.tar $TOOL
Binary file modified weka_upgrade_checker/weka_upgrade_checker
Binary file not shown.
2 changes: 1 addition & 1 deletion weka_upgrade_checker/weka_upgrade_checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
print("Must have python version 3.8 or later installed.")
sys.exit(1)

pg_version = "1.3.1"
pg_version = "1.3.2"

log_file_path = os.path.abspath("./weka_upgrade_checker.log")

Expand Down

0 comments on commit 9f85dc2

Please sign in to comment.