"...csrc/git@developer.sourcefind.cn:OpenDAS/vision.git" did not exist on "adfc15c49259dc1c638e5736e9b3227672ee3c66"
Commit a92ae368 authored by moto's avatar moto Committed by Facebook GitHub Bot
Browse files

Fix Kaldi submodule integration (#2269)

Summary:
When building Kaldi submodule, it requires to run `get_version.sh`, so that version header is available.
It was pointed that the script should run with `bash`, instead of `sh`.

Fixes https://github.com/pytorch/audio/issues/2268

Pull Request resolved: https://github.com/pytorch/audio/pull/2269

Reviewed By: carolineechen

Differential Revision: D34667726

Pulled By: mthrok

fbshipit-source-id: 761b82c54b58af2bfb2836cbe18c9708f853f1e1
parent 7e1afc40
...@@ -13,7 +13,7 @@ execute_process( ...@@ -13,7 +13,7 @@ execute_process(
# Update the version string # Update the version string
execute_process( execute_process(
WORKING_DIRECTORY ${KALDI_REPO}/src/base WORKING_DIRECTORY ${KALDI_REPO}/src/base
COMMAND sh get_version.sh COMMAND bash get_version.sh
) )
endif() endif()
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment