diff --git a/scripts/xshell.lib b/scripts/xshell.lib index bdf19f0..f3bd8ac 100644 --- a/scripts/xshell.lib +++ b/scripts/xshell.lib @@ -6,10 +6,10 @@ # Created: Sunday, 2022/02/20 - 18:44:18 # Author.: @fbnmtz, (fabiano.matoz@gmail.com) # ~·~·~·~·~·~·~·~·~·~·~·~·~~·~·~·~·~·~·~·~·~·~·~·~·~~·~·~·~·~·~~·~·~·~·~·~·~·~ -# Last Modified: Monday, 2024/12/09 - 16:21:29 +# Last Modified: Monday, 2024/12/09 - 16:25:50 # Modified By..: @fbnmtz, (fabiano.matoz@gmail.com) # ~·~·~·~·~·~·~·~·~·~·~·~·~~·~·~·~·~·~·~·~·~·~·~·~·~~·~·~·~·~·~~·~·~·~·~·~·~·~ -# Version: 0.1.13.269 +# Version: 0.1.13.273 # ~·~·~·~·~·~·~·~·~·~·~·~·~~·~·~·~·~·~·~·~·~·~·~·~·~~·~·~·~·~·~~·~·~·~·~·~·~·~ # Description: # > @@ -173,6 +173,8 @@ templateLib(){ local lastchar="$(echo "$name" | rev | cut -c1)" # check if it is a 'underscore' character [ "${lastchar}" != "_" ] && name+="_" - # convert lib name to upercase {^^} - echo -e "\n_xLIB_${name^^}=true\n" + # upcase lib name {^^} + name=$(upcase $name) + # const for LIB + echo -e "\n_xLIB_${name}=true\n" } \ No newline at end of file