c9f7fa Update render.sh:

Authored and Committed by areguera 13 years ago
    Update render.sh:
    
        - Add FLAG_ARCHITECTURE variable initialization.
    
    
        
Scripts/Bash/Functions/Render/render.sh CHANGED
@@ -33,9 +33,14 @@ function render {
33
33
34
34
# Define release number flag. The relesase number flag (--release)
35
35
# specifies the release number identity images are rendered for.
36
- # By default no release information is used.
36
+ # By default no release number is used.
37
37
local FLAG_RELEASE=''
38
38
39
+ # Define architecture flag. The architecture flag (--architecture)
40
+ # specifies the architecture type identity images are rendered
41
+ # for. By default no architecture type is used.
42
+ local FLAG_ARCHITECTURE=''
43
+
39
44
# Define rendition actions.
40
45
render_getActions
41
46