Yassmen commited on
Commit
6eefa6d
·
verified ·
1 Parent(s): 08dbcfc

Upload chromedriver

Browse files
Files changed (1) hide show
  1. chromedriver +11 -0
chromedriver ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/sh
2
+ if ! [ -x /snap/bin/chromium.chromedriver ]; then
3
+ echo "" >&2
4
+ echo "Command '$0' requires the chromium snap to be installed." >&2
5
+ echo "Please install it with:" >&2
6
+ echo "" >&2
7
+ echo "snap install chromium" >&2
8
+ echo "" >&2
9
+ exit 1
10
+ fi
11
+ exec /snap/bin/chromium.chromedriver "$@"