Skip to content

Commit 438bf05

Browse files
authored
Add nvidia-junest.sh
1 parent e3c5239 commit 438bf05

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

nvidia-junest.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)