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

Solve the space in base path problem issue #75 #417

Closed
wants to merge 2 commits into from

Commits on Jun 5, 2020

  1. Solve the space in base path problem

    If there is a space in the base anywhere, the scripts fails to start. 
    This is due to the default separator used in bash (which is a space). 
    This default separator can be change by setting the variable $IFS.
    In `build.sh`, the old IFS variable is saved and then replaced by 
    `\n\b`. At the end of the script, the saved IFS is set back.
    
    In `build-docker.sh`, a simple double quote was enough.
    gromain committed Jun 5, 2020
    Configuration menu
    Copy the full SHA
    65aceb8 View commit details
    Browse the repository at this point in the history

Commits on Dec 3, 2021

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