Skip to content

Commit 10c5efb

Browse files
laurelmayaj-stein-nist
authored andcommitted
Add missing $ in Linux build setup steps (#1779)
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.
1 parent 97dcbc1 commit 10c5efb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ The following steps are known to work on [Ubuntu](https://ubuntu.com/) (tested i
100100
cd path/to/repo/OSCAL/build
101101
export JAVA_CLASSPATH=/opt/oscal
102102
sudo mkdir -p "${JAVA_CLASSPATH}"
103-
sudo chown -R $USER:USER "${JAVA_CLASSPATH}"
103+
sudo chown -R "$USER":"$USER" "${JAVA_CLASSPATH}"
104104
mvn dependency:copy-dependencies -DoutputDirectory="${JAVA_CLASSPATH}"
105105
export CALABASH_HOME="${JAVA_CLASSPATH}"
106106
export SAXON_HOME="${JAVA_CLASSPATH}"

0 commit comments

Comments
 (0)