mirror of
https://github.com/onionshare/onionshare.git
synced 2025-01-27 03:32:59 -03:00
13 lines
195 B
Bash
13 lines
195 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [[ $EUID -ne 0 ]]; then
|
||
|
echo "You need to run this as root" 1>&2
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && cd .. && pwd )"
|
||
|
cd $DIR
|
||
|
|
||
|
dpkg -i tails/*.deb
|
||
|
|