mirror of
https://github.com/Z4nzu/hackingtool
synced 2024-11-14 19:55:19 +00:00
Merge pull request #388 from cclauss/patch-4
GitHub Action to test the install process
This commit is contained in:
commit
2dbf7730ea
26
.github/workflows/test_install.yml
vendored
Normal file
26
.github/workflows/test_install.yml
vendored
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
name: test_install
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
branches: [master]
|
||||||
|
push:
|
||||||
|
branches: [master]
|
||||||
|
jobs:
|
||||||
|
test_install:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
env:
|
||||||
|
TERM: "linux"
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- uses: actions/setup-python@v4
|
||||||
|
with:
|
||||||
|
python-version: 3.x
|
||||||
|
cache: 'pip'
|
||||||
|
- run: pip install --upgrade pip
|
||||||
|
- run: pwd && ls -hal
|
||||||
|
# How can we pipe in responses to `read` prompts?
|
||||||
|
#- run: echo -e "\n1\n1\n1\n" | sudo ./install.sh
|
||||||
|
- run: sudo ./install.sh 1
|
||||||
|
- run: pwd && ls -hal
|
||||||
|
- run: echo -e "1\n/home/runner/work/hackingtool/hackingtool\n" | hackingtool || true
|
||||||
|
- run: pwd && ls -hal
|
||||||
|
|
@ -74,7 +74,7 @@ class AllTools(HackingToolsCollection):
|
|||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
try:
|
try:
|
||||||
if system() == 'Linux':
|
if system() == 'Linux':
|
||||||
fpath = "/home/hackingtoolpath.txt"
|
fpath = os.path.expanduser("~/hackingtoolpath.txt")
|
||||||
if not os.path.exists(fpath):
|
if not os.path.exists(fpath):
|
||||||
os.system('clear')
|
os.system('clear')
|
||||||
# run.menu()
|
# run.menu()
|
||||||
|
@ -50,8 +50,10 @@ echo -e "${WHITE} [2] Arch Linux (pacman)" # added arch linux suppo
|
|||||||
echo -e "${WHITE} [0] Exit "
|
echo -e "${WHITE} [0] Exit "
|
||||||
|
|
||||||
echo -e "${COLOR}┌──($USER㉿$HOST)-[$(pwd)]"
|
echo -e "${COLOR}┌──($USER㉿$HOST)-[$(pwd)]"
|
||||||
read -p "└─$>>" choice
|
choice=$1
|
||||||
|
if [[ ! $choice =~ ^[1-2]+$ ]]; then
|
||||||
|
read -p "└─$>>" choice
|
||||||
|
fi
|
||||||
|
|
||||||
# Define installation directories
|
# Define installation directories
|
||||||
install_dir="/usr/share/hackingtool"
|
install_dir="/usr/share/hackingtool"
|
||||||
|
Loading…
Reference in New Issue
Block a user