diff mbox series

[RESEND] build: Fix error script name in git-submodule

Message ID 20171219020921.23887-1-maozy.fnst@cn.fujitsu.com
State New
Headers show
Series [RESEND] build: Fix error script name in git-submodule | expand

Commit Message

Mao Zhongyi Dec. 19, 2017, 2:09 a.m. UTC
When I follow the command line prompts to run
"$ scripts/git-sbumodule.sh update  ui/keycodemapdb dtc capstone"

this is what I got:
-bash: ./scripts/git-sbumodule.sh: No such file or directory

Cc: Daniel P. Berrange <berrange@redhat.com>
Fixes: f62bbee55d503f639ee9498878ebf42ff4f4299a
Signed-off-by: Mao Zhongyi <maozy.fnst@cn.fujitsu.com>
---
 scripts/git-submodule.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Thomas Huth Dec. 19, 2017, 7:55 a.m. UTC | #1
On 19.12.2017 03:09, Mao Zhongyi wrote:
> When I follow the command line prompts to run
> "$ scripts/git-sbumodule.sh update  ui/keycodemapdb dtc capstone"
> 
> this is what I got:
> -bash: ./scripts/git-sbumodule.sh: No such file or directory
> 
> Cc: Daniel P. Berrange <berrange@redhat.com>
> Fixes: f62bbee55d503f639ee9498878ebf42ff4f4299a
> Signed-off-by: Mao Zhongyi <maozy.fnst@cn.fujitsu.com>
> ---
>  scripts/git-submodule.sh | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/scripts/git-submodule.sh b/scripts/git-submodule.sh
> index bc7224a..807ca0b 100755
> --- a/scripts/git-submodule.sh
> +++ b/scripts/git-submodule.sh
> @@ -28,7 +28,7 @@ error() {
>      echo
>      echo "and then manually update submodules prior to running make, with:"
>      echo
> -    echo " $ scripts/git-sbumodule.sh update $modules"
> +    echo " $ scripts/git-submodule.sh update $modules"
>      echo
>      exit 1
>  }
> 

Reviewed-by: Thomas Huth <thuth@redhat.com>
diff mbox series

Patch

diff --git a/scripts/git-submodule.sh b/scripts/git-submodule.sh
index bc7224a..807ca0b 100755
--- a/scripts/git-submodule.sh
+++ b/scripts/git-submodule.sh
@@ -28,7 +28,7 @@  error() {
     echo
     echo "and then manually update submodules prior to running make, with:"
     echo
-    echo " $ scripts/git-sbumodule.sh update $modules"
+    echo " $ scripts/git-submodule.sh update $modules"
     echo
     exit 1
 }