Skip to content

Commit

Permalink
[egs] set -e in all recipes to exit or errors (asteroid-team#129)
Browse files Browse the repository at this point in the history
  • Loading branch information
mpariente authored May 29, 2020
1 parent 7c1cf78 commit e603ce6
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 6 deletions.
1 change: 1 addition & 0 deletions egs/dns_challenge/baseline/run.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/bash
set -e # Exit on error

# Main storage directory. You'll need disk space to dump DNS dataset.
storage_dir=
Expand Down
1 change: 1 addition & 0 deletions egs/fuss/baseline/run.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/bash
set -e # Exit on error

# Main storage directory
storage_dir=
Expand Down
1 change: 1 addition & 0 deletions egs/sms_wsj/CaCGMM/run.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/bash
set -e # Exit on error


storage_dir= # Main storage directory (Need disk space)
Expand Down
2 changes: 1 addition & 1 deletion egs/wham/ConvTasNet/run.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

set -e # Exit on error

# Main storage directory. You'll need disk space to dump the WHAM mixtures and the wsj0 wav
# files if you start from sphere files.
storage_dir=
Expand Down
2 changes: 1 addition & 1 deletion egs/wham/DPRNN/run.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

set -e # Exit on error

# Main storage directory. You'll need disk space to dump the WHAM mixtures and the wsj0 wav
# files if you start from sphere files.
storage_dir=
Expand Down
2 changes: 1 addition & 1 deletion egs/wham/DynamicMixing/run.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

set -e # Exit on error

# Main storage directory. You'll need disk space to dump the WHAM mixtures and the wsj0 wav
# files if you start from sphere files.
storage_dir=
Expand Down
2 changes: 1 addition & 1 deletion egs/wham/TwoStep/run.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

set -e # Exit on error

# Main storage directory. You'll need disk space to dump the WHAM mixtures and the wsj0 wav
# files if you start from sphere files.
storage_dir=
Expand Down
2 changes: 1 addition & 1 deletion egs/whamr/TasNet/run.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

set -e # Exit on error

# Main storage directory. You'll need disk space to dump the WHAM mixtures and the wsj0 wav
# files if you start from sphere files.
storage_dir=
Expand Down
2 changes: 1 addition & 1 deletion egs/wsj0-mix/DeepClustering/run.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

set -e # Exit on error

# Main storage directory. You'll need disk space to dump the WHAM mixtures and the wsj0 wav
# files if you start from sphere files.
storage_dir=
Expand Down

0 comments on commit e603ce6

Please sign in to comment.