7 lines
193 B
Bash
7 lines
193 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
echo "Installing scanservjs directly from GitHub..."
|
||
|
curl -s https://raw.githubusercontent.com/sbs20/scanservjs/master/packages/server/installer.sh | bash -s -- -a
|
||
|
|
||
|
exit 0
|