Skip to content

Commit

Permalink
Fix markdown list in installation.md (#56165)
Browse files Browse the repository at this point in the history
Documenter.jl requires all trailing list content to follow the same
indentation as the header. So, in the current view
(https://docs.julialang.org/en/v1/manual/installation/#Command-line-arguments)
the list appears broken.
  • Loading branch information
abhro authored Oct 15, 2024
1 parent 9223088 commit 9f92989
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions doc/src/manual/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,21 +44,21 @@ curl -fsSL https://install.julialang.org | sh -s -- <ARGS>

Here `<ARGS>` should be replaced with one or more of the following arguments:
- `--yes` (or `-y`): Run the installer in a non-interactive mode. All
configuration values use their default or a value supplied as a command line
argument.
configuration values use their default or a value supplied as a command line
argument.
- `--default-channel=<NAME>`: Configure the default Juliaup channel. For
example `--default-channel lts` would install the `lts` channel and configure it
as the default.
example `--default-channel lts` would install the `lts` channel and configure it
as the default.
- `--add-to-path=<yes|no>`: Configure whether Julia should be added to the `PATH`
environment variable. Valid values are `yes` (default) and `no`.
environment variable. Valid values are `yes` (default) and `no`.
- `--background-selfupdate=<SECONDS>`: Configure an optional CRON job that
auto-updates Juliaup if `<SECONDS>` has a value larger than 0. The actual value
controls how often the CRON job will run to check for a new Juliaup version in
seconds. The default value is 0, i.e. no CRON job will be created.
auto-updates Juliaup if `<SECONDS>` has a value larger than 0. The actual value
controls how often the CRON job will run to check for a new Juliaup version in
seconds. The default value is 0, i.e. no CRON job will be created.
- `--startup-selfupdate=<MINUTES>`: Configure how often Julia will check for new
versions of Juliaup when Julia is started. The default is every 1440 minutes.
versions of Juliaup when Julia is started. The default is every 1440 minutes.
- `-p=<PATH>` (or `--path`): Configure where the Julia and Juliaup binaries are
installed. The default is `~/.juliaup`.
installed. The default is `~/.juliaup`.

## Alternative installation methods

Expand Down

5 comments on commit 9f92989

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

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

Executing the daily package evaluation, I will reply here when finished:

@nanosoldier runtests(isdaily = true)

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

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

The package evaluation job you requested has completed - possible new issues were detected.
The full report is available.

@vtjnash
Copy link
Member

Choose a reason for hiding this comment

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

@nanosoldier runbenchmarks(ALL, isdaily = true)

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

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

Your benchmark job has completed - possible performance regressions were detected. A full report can be found here.

@vtjnash
Copy link
Member

Choose a reason for hiding this comment

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

A lot of changes in this one, which I assume to be Oscars fault. Hopefully I didn’t miss anything important

Please sign in to comment.