# HG changeset patch # User Giulio Moro # Date 1463408000 -3600 # Node ID 7fe0d7c54bce01dc744cede4a92bdc1be35b009a # Parent b491eb027f826383c6a9f06148f3d53db9528118 Inverted the meaning of the -f option diff -r b491eb027f82 -r 7fe0d7c54bce scripts/build_project.sh --- a/scripts/build_project.sh Mon May 16 14:59:36 2016 +0100 +++ b/scripts/build_project.sh Mon May 16 15:13:20 2016 +0100 @@ -28,10 +28,11 @@ BeagleRT files are found. The -c option passes command-line arguments to the BeagleRT program; enclose the argument string in quotes. - The -f argument runs the project in the foreground of the current terminal, + By default, the project runs in the foreground of the current terminal, within a screen session that can be detached later. The -F argument runs - the project in the foreground of the current terminal, without screen, so - the output can be piped to another destination." + the project in the foreground of the current terminal, without screen, so + the output can be piped to another destination. The -f argument runs it + in a screen in the background, so no output is shown." } OPTIND=1 @@ -42,7 +43,7 @@ ;; c) COMMAND_ARGS=$OPTARG ;; - f) RUN_IN_FOREGROUND=1 + f) RUN_IN_FOREGROUND=0 ;; F) RUN_WITHOUT_SCREEN=1 ;;