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 e3c5239 commit 438bf05Copy full SHA for 438bf05
nvidia-junest.sh
@@ -0,0 +1,12 @@
1
+#!/bin/sh
2
+
3
+conty_minimal="https://github.com/ivan-hc/Conty/releases/download/continuous-SAMPLE/conty.sh"
4
5
+if command -v curl >/dev/null 2>&1; then
6
+ echo "Downloading Conty"
7
+ curl -#Lo conty.sh "${conty_minimal}"
8
+else
9
+ echo "You need \"curl\" to download this script"; exit 1
10
+fi
11
+[ -f ./conty.sh ] && chmod a+x ./conty.sh && ./conty.sh bwrap --version | grep -v bubblewrap
12
+rm -f ./conty.sh
0 commit comments