Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix fs_time check for number of arguments and line duplication in recon-surf #545

Merged
merged 2 commits into from
Jul 12, 2024

Commits on Jul 12, 2024

  1. Fix fs_time check of nargs/commands

    fs_time was terminating when only one command and no arguments to that command were passed ("$#" == 1).
    This check was also duplicated with a later check in the script where the length of $cmd is checked.
    > if [[ "${#cmd[@]}" == 0 ]]
    Removing the first check in favor of this second, more descriptive and robust check.
    dkuegler committed Jul 12, 2024
    Configuration menu
    Copy the full SHA
    248e5ab View commit details
    Browse the repository at this point in the history
  2. Removing duplicate lines in recon_surf/recon-surf.sh and Docker/insta…

    …ll_fs_pruned.sh. These are likely git rebase/merge corruptions.
    dkuegler committed Jul 12, 2024
    Configuration menu
    Copy the full SHA
    88b0d8c View commit details
    Browse the repository at this point in the history