Skip to content
This repository has been archived by the owner on Jan 9, 2025. It is now read-only.

Commit

Permalink
Bug on: request.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
gvoze32 committed Feb 14, 2024
1 parent c3482ed commit c6023ad
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
run: |
python - <<EOF
with open("subdomainlist", "r") as file:
lines = file.readlines()
lines = [line.rstrip() for line in file.readlines()]
domain_dict = {}
for line in lines:
subdomain = line.strip()
Expand All @@ -51,7 +51,6 @@ jobs:
- name: Release hosts
run: |
mv hosts-subdomainlist_sorted hosts
sudo sed -i '1d' hosts
- name: Add BEBASID Text to Hosts File
run: |
sudo cat > temp_hosts <<EOF
Expand Down

0 comments on commit c6023ad

Please sign in to comment.