浏览代码

Add usage error

Alois Mahdal 6 年前
父节点
当前提交
011593cfb0
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1
    0
      dotfiles/bash/main.bashrc

+ 1
- 0
dotfiles/bash/main.bashrc 查看文件

88
     # Check if YAML file $1 is loadable
88
     # Check if YAML file $1 is loadable
89
     #
89
     #
90
     local yfile=$1
90
     local yfile=$1
91
+    test -n "$yfile" || { echo "usage: ckyaml FILE.yaml"; return 2; }
91
     python -c 'import yaml; import sys; print(yaml.load(sys.stdin)["this"])' <"$yfile"
92
     python -c 'import yaml; import sys; print(yaml.load(sys.stdin)["this"])' <"$yfile"
92
 }
93
 }
93
 
94