File: posix_shell.patch

package info (click to toggle)
python-biom-format 2.1.17-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 52,044 kB
  • sloc: python: 13,624; makefile: 149; sh: 105; javascript: 45
file content (15 lines) | stat: -rw-r--r-- 399 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Author: Andreas Tille <tille@debian.org>
Last-Update: 2019-08-06
Description: Fix shell syntax

--- a/biom/assets/exercise_cli.sh
+++ b/biom/assets/exercise_cli.sh
@@ -3,7 +3,7 @@
 
 table=examples/min_sparse_otu_table_hdf5.biom
 obsmd=examples/obs_md.txt
-if [[ ! -f ${table} ]];
+if [ ! -f ${table} ] ;
 then
     echo "This script expects to operate in the base repository directory"
     exit 1