Merge pull request #1480 from matthiasbeyer/imag-contact/allow-non-absolut-pathes

Revert "Deny non-absolut import pathes"
This commit is contained in:
Matthias Beyer 2018-05-02 21:05:13 +02:00 committed by GitHub
commit 33b52cc928
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -162,11 +162,6 @@ fn import(rt: &Runtime) {
let scmd = rt.cli().subcommand_matches("import").unwrap(); // secured by main
let path = scmd.value_of("path").map(PathBuf::from).unwrap(); // secured by clap
if !path.is_absolute() {
error!("Import path must be absolute. Sorry.");
exit(1)
}
if !path.exists() {
error!("Path does not exist");
exit(1)