Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Launcher does not need to be compiled. Unpack the tarball or clone the repositor

## Verifying Installation

Included in the download is a file called "quickstart" found in the folder "tests". In order to verify installation, open the command line and find the launcher file, and then type "cd tests" and then press the enter key. If the quickstart file is in the correct place, there is no need for arguments, so type "./quickstart". However, if the Launcher directory is found somewhere else, type "./quickstart <Launcher directory>". The script will run in the terminal and if there are no errors in the process, the last line will say "Launcher: Done. Job exited without errors".
Included in the download is a file called "quicktest" found in the folder "tests". In order to verify installation, open the command line and find the launcher file, and then type "cd tests" and then press the enter key. If the quicktest file is in the correct place, there is no need for arguments, so type "./quicktest". However, if the Launcher directory is found somewhere else, type "./quicktest <Launcher directory>". The script will run in the terminal and if there are no errors in the process, the last line will say "Launcher: Done. Job exited without errors".

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That "./quicktest <Launcher directory>" in README.md is being interpreted as raw HTML and not rendering in the Markdown. I'd recommend also escaping with backticks ( ` ) instead of quotes like I did to make this comment: ./quicktest <Launcher directory>


## Quickstart

Expand Down
2 changes: 1 addition & 1 deletion tests/quicktest
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ if [[ -z "$LAUNCHER_DIR" ]]; then
export LAUNCHER_DIR=../
fi

export LAUNCHER_JOB_FILE=commands
export LAUNCHER_JOB_FILE=default_work_file
export LAUNCHER_SCHED=interleaved
export LAUNCHER_WORKDIR=`pwd`

Expand Down
2 changes: 1 addition & 1 deletion tests/quicktest2
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ if [[ -z "$LAUNCHER_DIR" ]]; then
export LAUNCHER_DIR=../
fi

export LAUNCHER_JOB_FILE=$LAUNCHER_DIR/extras/examples/helloworld_short
export LAUNCHER_JOB_FILE=$LAUNCHER_DIR/extras/examples/helloworld_multi_output
export LAUNCHER_SCHED=block
export LAUNCHER_WORKDIR=`pwd`

Expand Down