diff --git a/Scripts/Bash/Cli/Functions/Locale/locale_getActions.sh b/Scripts/Bash/Cli/Functions/Locale/locale_getActions.sh
index 5e96715..8915238 100644
--- a/Scripts/Bash/Cli/Functions/Locale/locale_getActions.sh
+++ b/Scripts/Bash/Cli/Functions/Locale/locale_getActions.sh
@@ -102,6 +102,11 @@ function locale_getActions {
             -e "s!/(Bash)!/\1/$(cli_getCurrentLocale)!" \
             -e "s!/${CLI_PROGRAM}!!") 
   
+    # Create work directory, if it doesn't exist.
+    if [[ ! -d $WORKDIR ]];then
+        mkdir -p $WORKDIR
+    fi
+
     # Syncronize changes between the working copy and the central
     # repository to bring down changes.
     cli_syncroRepoChanges "${WORKDIR}"