diff options
author | louis <louis.braun@gmx.de> | 2015-06-04 10:57:25 +0200 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2015-06-04 10:57:25 +0200 |
commit | 664b71daee7b42de2364bbbbf76a40fb9ad5817c (patch) | |
tree | 60842cc065ba6a875aae9bc235e9949fb28e10dd /libcore | |
parent | d2947bfcfdb16fbb948ef82fd4957e63210f5730 (diff) | |
download | vdr-plugin-skindesigner-664b71daee7b42de2364bbbbf76a40fb9ad5817c.tar.gz vdr-plugin-skindesigner-664b71daee7b42de2364bbbbf76a40fb9ad5817c.tar.bz2 |
changed skin installation that VDR main loop is not blocked
Diffstat (limited to 'libcore')
-rw-r--r-- | libcore/skinrepo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcore/skinrepo.c b/libcore/skinrepo.c index 91f22a9..c6943f9 100644 --- a/libcore/skinrepo.c +++ b/libcore/skinrepo.c @@ -32,7 +32,7 @@ void cSkinRepo::Install(string path, string themesPath) { this->themesPath = themesPath; if (repoType == rtGit) { - command = *cString::sprintf("git clone --progress %s %s", url.c_str(), skinPath.c_str()); + command = *cString::sprintf("git clone --depth=1 --progress %s %s", url.c_str(), skinPath.c_str()); tempfile = *cString::sprintf("gitclone_%s_%ld.out", name.c_str(), time(0)); dsyslog("skindesigner: installing skin from Git, command: %s, logfile: %s", command.c_str(), tempfile.c_str()); |