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.
2 parents 44e8411 + f53c8af commit 9aa87caCopy full SHA for 9aa87ca
build.sh
@@ -0,0 +1,12 @@
1
+#!/bin/bash
2
+pip install -r requirements.txt
3
+if [[ "$OSTYPE" == "linux-gnu"* ]]; then
4
+ echo "Compiling for Linux..."
5
+ nuitka --standalone --onefile CF-Handler.py
6
+
7
+elif [[ "$OSTYPE" == "msys" || "$OSTYPE" == "cygwin" ]]; then
8
+ echo "Compiling for Windows..."
9
+ nuitka --standalone --onefile --windows-disable-console CF-Handler.py
10
+else
11
+ echo "Unsupported OS"
12
+fi
requirements.txt
@@ -0,0 +1 @@
+nuitka
0 commit comments