Skip to content

Commit c4402eb

Browse files
committed
Fixed agreements terms and project description
1 parent 0540b4a commit c4402eb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# script-wizard
2-
A fully automated installer script template
2+
A fully automated installer for python scripts

install.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ SHORTPROGRAMNAME=""
1212
echo "Welcome to the $PROGRAMNAME installer
1313
1414
By using this software you must agree all below terms:
15-
1) Usage of this tools for attacking targets without prior mutual consent is illegal.
16-
2) By using this software, it's the end user’s responsibility to obey all applicable local, state and federal laws.
15+
1) By using this software, it's the end user’s responsibility to obey all applicable local, state and federal laws.
16+
2) The software is provided \"as is\", without warranty of any kind, express or implied.
1717
3) $DEVELOPERNAME isn't responsible for any damage caused by this software.
1818
1919
[?] If you agree, press [Enter] to procede:"
@@ -22,7 +22,7 @@ read junk
2222
# TODO: Implement non-APT environment installation
2323
if [ $(dpkg-query -W -f='${Status}' python3 > /dev/null 2>&1 | grep -c "ok installed") -eq 0 ]; then
2424
# Python3 not installed on the system, just install it!
25-
echo "[*] Installing python interpreter on the system..."
25+
echo "[*] Installing python interpreter on the system..."
2626
apt update > /dev/null 2>&1;
2727
apt install python3 > /dev/null 2>&1;
2828
fi

0 commit comments

Comments
 (0)