Skip to content

Commit

Permalink
Add missing $ in Linux build setup steps (#1779)
Browse files Browse the repository at this point in the history
The steps cannot be copied and pasted as-is because the `chown` command
is missing a `$` for the `USER` variable for the group argument. This
also adds quotation marks around the variables.
  • Loading branch information
laurelmay authored and aj-stein-nist committed Jul 10, 2023
1 parent 97dcbc1 commit 10c5efb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ The following steps are known to work on [Ubuntu](https://ubuntu.com/) (tested i
cd path/to/repo/OSCAL/build
export JAVA_CLASSPATH=/opt/oscal
sudo mkdir -p "${JAVA_CLASSPATH}"
sudo chown -R $USER:USER "${JAVA_CLASSPATH}"
sudo chown -R "$USER":"$USER" "${JAVA_CLASSPATH}"
mvn dependency:copy-dependencies -DoutputDirectory="${JAVA_CLASSPATH}"
export CALABASH_HOME="${JAVA_CLASSPATH}"
export SAXON_HOME="${JAVA_CLASSPATH}"
Expand Down

0 comments on commit 10c5efb

Please sign in to comment.