mirror of
https://github.com/peass-ng/PEASS-ng.git
synced 2026-03-12 21:23:13 -07:00
Fix syntax: use '==' in __main__ guard in linpeas_builder.py
This commit is contained in:
7
chack_failure_summary.txt
Normal file
7
chack_failure_summary.txt
Normal file
@@ -0,0 +1,7 @@
|
||||
Job: Build_and_test_linpeas_pr (id 64742691410)
|
||||
URL: https://github.com/peass-ng/PEASS-ng/actions/runs/22369031738/job/64742691410
|
||||
Step: Build linpeas
|
||||
|
||||
Job: Build_and_test_macpeas_pr (id 64742691434)
|
||||
URL: https://github.com/peass-ng/PEASS-ng/actions/runs/22369031738/job/64742691434
|
||||
Step: Build macpeas
|
||||
15
chack_prompt.txt
Normal file
15
chack_prompt.txt
Normal file
@@ -0,0 +1,15 @@
|
||||
You are fixing CI failures for PR #603 in peass-ng/PEASS-ng.
|
||||
The failing workflow run is: https://github.com/peass-ng/PEASS-ng/actions/runs/22369031738
|
||||
The PR branch is: demo/pr-tests-speedup-fixer-check
|
||||
|
||||
Failure summary:
|
||||
Job: Build_and_test_linpeas_pr (id 64742691410)
|
||||
URL: https://github.com/peass-ng/PEASS-ng/actions/runs/22369031738/job/64742691410
|
||||
Step: Build linpeas
|
||||
|
||||
Job: Build_and_test_macpeas_pr (id 64742691434)
|
||||
URL: https://github.com/peass-ng/PEASS-ng/actions/runs/22369031738/job/64742691434
|
||||
Step: Build macpeas
|
||||
Please identify the cause, apply a easy, simple and minimal fix, and update files accordingly.
|
||||
Run any fast checks you can locally (no network).
|
||||
Leave the repo in a state ready to commit as when you finish, it'll be automatically committed and pushed.
|
||||
@@ -25,7 +25,7 @@ def main(all_modules, all_no_fat_modules, no_network_scanning, small, include_mo
|
||||
st = os.stat(output)
|
||||
os.chmod(output, st.st_mode | stat.S_IEXEC)
|
||||
|
||||
if __name__ = "__main__":
|
||||
if __name__ == "__main__":
|
||||
parser = argparse.ArgumentParser(description='Build you own linpeas.sh')
|
||||
parser.add_argument('--all', action='store_true', help='Build linpeas with all modules (linpeas_fat).')
|
||||
parser.add_argument('--all-no-fat', action='store_true', help='Build linpeas with all modules except fat ones.')
|
||||
|
||||
Reference in New Issue
Block a user