File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,8 @@ getStoredConfigSnapshotPath() {
4949 echo " $FABLO_TARGET /fablo-config.json"
5050 elif [ -f " $FABLO_TARGET /fablo-config.yaml" ]; then
5151 echo " $FABLO_TARGET /fablo-config.yaml"
52+ elif [ -f " $FABLO_TARGET /fablo-config.yml" ]; then
53+ echo " $FABLO_TARGET /fablo-config.yml"
5254 else
5355 echo " "
5456 fi
@@ -68,7 +70,7 @@ verifyConfigMatchesOrFail() {
6870 echo " No stored config snapshot found in '$FABLO_TARGET '. Storing current config snapshot for future comparisons."
6971
7072 local ext=" ${current_config##* .} "
71- if [ " $ext " = " json" ] || [ " $ext " = " yaml" ] ; then
73+ if [ " $ext " = " json" ] || [ " $ext " = " yaml" ] || [ " $ext " = " yml " ] ; then
7274 snapshotFabloConfigToTarget " $current_config " " $FABLO_TARGET "
7375 else
7476 echo " Error: Unsupported config file extension '.$ext '. Supported extensions are: .json, .yaml"
You can’t perform that action at this time.
0 commit comments