Skip to content

Commit

Permalink
[scripts] Fix path.sh bug in vad_to_segments.sh (kaldi-asr#2402)
Browse files Browse the repository at this point in the history
  • Loading branch information
nshmyrev authored and danpovey committed May 3, 2018
1 parent 64025aa commit 6a32fbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion egs/callhome_diarization/v1/diarization/vad_to_segments.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ segmentation_opts= # E.g. set this as --segmentation-opts "--silance-proportion

echo "$0 $@" # Print the command line for logging

[ -f .path.sh ] && . ./path.sh
if [ -f path.sh ]; then . ./path.sh; fi
. parse_options.sh || exit 1;

if [ $# -ne 2 ]; then
Expand Down

0 comments on commit 6a32fbd

Please sign in to comment.