From 42ceffa2e9fe9ae9d208b98e47e03126c1f9e9a1 Mon Sep 17 00:00:00 2001 From: hmikihth Date: Sun, 5 Jun 2016 13:16:31 +0100 Subject: [PATCH] . --- src/modules/unpackfs/main.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/modules/unpackfs/main.py b/src/modules/unpackfs/main.py index 7823791bf..926bc0f01 100644 --- a/src/modules/unpackfs/main.py +++ b/src/modules/unpackfs/main.py @@ -26,7 +26,6 @@ import shutil import subprocess import sys import tempfile -import platform from libcalamares import * @@ -282,7 +281,7 @@ def run(): destination = os.path.abspath(root_mount_point + entry["destination"]) - if not os.path.exists(source) or (os.path.isdir(source) and platform.dist()[0] != "blackPanther"): + if not os.path.exists(source): return "Bad source", "source=\"{}\"".format(source) if not os.path.isdir(destination):