Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/roundcube/roundcubemail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2016-12-30 21:46:17 +0300
committerAleksander Machniak <alec@alec.pl>2016-12-30 21:46:17 +0300
commitc761f5b6e3ebb5a231c197bafe268c867f78091a (patch)
tree1efd3effdf177213e5db4dc5ba522fff41dd7ad0 /bin
parentcefe72dcd2c707b33464f8cfca4c0179fa3b84ca (diff)
Fix function name
Diffstat (limited to 'bin')
-rwxr-xr-xbin/install-jsdeps.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/install-jsdeps.sh b/bin/install-jsdeps.sh
index c92c94a2f..c4905f6f3 100755
--- a/bin/install-jsdeps.sh
+++ b/bin/install-jsdeps.sh
@@ -175,7 +175,7 @@ function compose_destfile($package, $srcfile)
/**
* Extract a Zip archive into the destination specified by the package config
*/
-function extrac_zipfile($package, $srcfile)
+function extract_zipfile($package, $srcfile)
{
global $UNZIP, $CACHEDIR;
@@ -274,7 +274,7 @@ foreach ($SOURCES['dependencies'] as $package) {
$srcfile = fetch_from_source($package, !$args['force'], $filetype);
if ($filetype === 'zip') {
- extrac_zipfile($package, $srcfile);
+ extract_zipfile($package, $srcfile);
}
else {
compose_destfile($package, $srcfile);