From d40d757b7c1068c39ac566c510db83c025d4dda3 Mon Sep 17 00:00:00 2001 From: bryanloz-xilinx <90728438+bryanloz-xilinx@users.noreply.github.com> Date: Fri, 22 Jul 2022 11:05:59 -0700 Subject: [PATCH] Update README.md Previous documented command was providing docker folder mount option to addlicense as arguments... that was incorrect. Folder should be mounted before specifying the docker image to run. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2a7ae81..fdb72ed 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ Finally, to run it, mount the directory you want to scan to `/src` and pass the appropriate addlicense flags: ```bash -docker run -it ghcr.io/google/addlicense -v ${PWD}:/src -c "Google LLC" *.go +docker run -it -v ${PWD}:/src ghcr.io/google/addlicense -c "Google LLC" *.go ``` ## license