1*01826a49SYabin Cui#!/bin/sh 2*01826a49SYabin Cui 3*01826a49SYabin Cuiprintln "+ zstd -r * --output-dir-mirror=\"\"" 4*01826a49SYabin Cuizstd -r * --output-dir-mirror="" && die "Should not allow empty output dir!" 5*01826a49SYabin Cuiprintln "+ zstd -r * --output-dir-flat=\"\"" 6*01826a49SYabin Cuizstd -r * --output-dir-flat="" && die "Should not allow empty output dir!" 7*01826a49SYabin Cuiexit 0 8