Merge execute_module in init_module

This commit is contained in:
Antonin Décimo
2015-06-16 17:24:13 +02:00
parent 2c588118af
commit 16387f4f7e
5 changed files with 13 additions and 26 deletions

View File

@@ -1,7 +1,5 @@
# Android debug package
execute_module "android"
init_module "Android"
init_module "Android" "android"
PACKAGE_NAME=$(echo $PROJECT_NAME | sed -e 's/[^-a-zA-Z0-9_]/-/g' | tr '[:upper:]' '[:lower:]')

View File

@@ -1,7 +1,5 @@
# Debian package
execute_module "debian"
init_module "Debian"
init_module "Debian" "debian"
PACKAGE_NAME=$(echo $PROJECT_NAME | sed -e 's/[^-a-zA-Z0-9_]/-/g' | tr '[:upper:]' '[:lower:]')

View File

@@ -1,7 +1,5 @@
# Mac OS X
execute_module "osx"
init_module "Mac OS X"
init_module "Mac OS X" "osx"
PACKAGE_NAME=$(echo $PROJECT_NAME | sed -e 's/[^-a-zA-Z0-9_]/-/g' | tr '[:upper:]' '[:lower:]')

View File

@@ -1,7 +1,5 @@
# Windows
execute_module "windows"
init_module "Windows"
init_module "Windows" "windows"
PACKAGE_NAME=$(echo $PROJECT_NAME | sed -e 's/[^-a-zA-Z0-9_]/-/g' | tr '[:upper:]' '[:lower:]')