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

Various script fixes #9

Merged

Commits on Apr 29, 2024

  1. Configuration menu
    Copy the full SHA
    90c8d2f View commit details
    Browse the repository at this point in the history

Commits on May 10, 2024

  1. Configuration menu
    Copy the full SHA
    9dce692 View commit details
    Browse the repository at this point in the history
  2. Fix PATH if script is run from different directory

    If running se-setup.sh e.g. from the ochami-vm repo root:
    
    [user@host ochami-vm]$ pwd
    /home/user/ochami-vm
    [user@host ochami-vm]$ ./s3-utils/s3-setup.sh
    [user@host ochami-vm]$ echo $PATH
    ...:/home/user/ochami-vm/bin
    
    Running s3-setup.sh puts '/home/user/ochami-vm/bin' in the PATH when it should be '/home/user/ochami-vm/s3-utils/bin'.
    
    This commit fixes this so no matter from which working directory the script is run from, the correct path is put into PATH.
    synackd committed May 10, 2024
    Configuration menu
    Copy the full SHA
    ac11309 View commit details
    Browse the repository at this point in the history