Skip to content

Commit

Permalink
Shell: renamed all Error filepath to align with new findings
Browse files Browse the repository at this point in the history
It's better to have the type comes after the library name like
'HestiaKERNEL_ERROR...' or 'HestiaKERNEL_OS...' function names
and filepaths. That way, it's less learning yet tracable by
reading. Hence, let's deal with error codes first.

This patch renames all error filepath to align with new findings
in Shell/ directory.

Co-authored-by: Shuralyov, Jean <jean.shuralyov@proton.me>
Co-authored-by: Galyna, Cory <cory.galyna@gmail.com>
Co-authored-by: (Holloway) Chew, Kean Ho <me@hollowaykeanho.com>
Signed-off-by: (Holloway) Chew, Kean Ho <me@hollowaykeanho.com>
  • Loading branch information
3 people committed Dec 26, 2024
1 parent dd34a7a commit d532b47
Show file tree
Hide file tree
Showing 98 changed files with 97 additions and 97 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion Shell/libraries/HestiaKERNEL/FS/Get_Files.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#
# You MUST ensure any interaction with the content STRICTLY COMPLIES with
# the permissions and limitations set forth in the license.
. "${env:LIBS_HESTIA}\HestiaKERNEL\Errors\Error_Codes.ps1"
. "${env:LIBS_HESTIA}\HestiaKERNEL\Error\Codes.ps1"
. "${env:LIBS_HESTIA}\HestiaKERNEL\FS\Is_Directory.ps1"
. "${env:LIBS_HESTIA}\HestiaKERNEL\FS\Is_File.ps1"

Expand Down
2 changes: 1 addition & 1 deletion Shell/libraries/HestiaKERNEL/FS/Get_Files.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#
# You MUST ensure any interaction with the content STRICTLY COMPLIES with
# the permissions and limitations set forth in the license.
. "${LIBS_HESTIA}/HestiaKERNEL/Errors/Error_Codes.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Error/Codes.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/FS/Is_Directory.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/FS/Is_File.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Number/Is_Number.sh"
Expand Down
2 changes: 1 addition & 1 deletion Shell/libraries/HestiaKERNEL/FS/Is_Directory.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#
# You MUST ensure any interaction with the content STRICTLY COMPLIES with
# the permissions and limitations set forth in the license.
. "${env:LIBS_HESTIA}\hestiaKERNEL\Errors\Error_Codes.ps1"
. "${env:LIBS_HESTIA}\hestiaKERNEL\Error\Codes.ps1"



Expand Down
2 changes: 1 addition & 1 deletion Shell/libraries/HestiaKERNEL/FS/Is_Directory.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#
# You MUST ensure any interaction with the content STRICTLY COMPLIES with
# the permissions and limitations set forth in the license.
. "${LIBS_HESTIA}/HestiaKERNEL/Errors/Error_Codes.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Error/Codes.sh"



Expand Down
2 changes: 1 addition & 1 deletion Shell/libraries/HestiaKERNEL/FS/Is_File.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#
# You MUST ensure any interaction with the content STRICTLY COMPLIES with
# the permissions and limitations set forth in the license.
. "${env:LIBS_HESTIA}\hestiaKERNEL\Errors\Error_Codes.ps1"
. "${env:LIBS_HESTIA}\hestiaKERNEL\Error\Codes.ps1"



Expand Down
2 changes: 1 addition & 1 deletion Shell/libraries/HestiaKERNEL/FS/Is_File.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#
# You MUST ensure any interaction with the content STRICTLY COMPLIES with
# the permissions and limitations set forth in the license.
. "${LIBS_HESTIA}/HestiaKERNEL/Errors/Error_Codes.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Error/Codes.sh"



Expand Down
2 changes: 1 addition & 1 deletion Shell/libraries/HestiaKERNEL/List/Is_Array_Byte.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#
# You MUST ensure any interaction with the content STRICTLY COMPLIES with
# the permissions and limitations set forth in the license.
. "${env:LIBS_HESTIA}\HestiaKERNEL\Errors\Error_Codes.ps1"
. "${env:LIBS_HESTIA}\HestiaKERNEL\Error\Codes.ps1"
. "${env:LIBS_HESTIA}\HestiaKERNEL\List\Is_Array_Number.ps1"


Expand Down
2 changes: 1 addition & 1 deletion Shell/libraries/HestiaKERNEL/List/Is_Array_Byte.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#
# You MUST ensure any interaction with the content STRICTLY COMPLIES with
# the permissions and limitations set forth in the license.
. "${LIBS_HESTIA}/HestiaKERNEL/Errors/Error_Codes.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Error/Codes.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/List/Is_Array_Number.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Number/Is_Number.sh"

Expand Down
2 changes: 1 addition & 1 deletion Shell/libraries/HestiaKERNEL/List/Is_Array_Number.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# You MUST ensure any interaction with the content STRICTLY COMPLIES with
# the permissions and limitations set forth in the license.
# Copyright 2024 (Holloway) Chew, Kean Ho <hello@hollowaykeanho.com>
. "${env:LIBS_HESTIA}\HestiaKERNEL\Errors\Error_Codes.ps1"
. "${env:LIBS_HESTIA}\HestiaKERNEL\Error\Codes.ps1"



Expand Down
2 changes: 1 addition & 1 deletion Shell/libraries/HestiaKERNEL/List/Is_Array_Number.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#
# You MUST ensure any interaction with the content STRICTLY COMPLIES with
# the permissions and limitations set forth in the license.
. "${LIBS_HESTIA}/HestiaKERNEL/Errors/Error_Codes.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Error/Codes.sh"



Expand Down
2 changes: 1 addition & 1 deletion Shell/libraries/HestiaKERNEL/Number/Is_Number.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# You MUST ensure any interaction with the content STRICTLY COMPLIES with
# the permissions and limitations set forth in the license.
# Copyright 2024 (Holloway) Chew, Kean Ho <hello@hollowaykeanho.com>
. "${env:LIBS_HESTIA}\HestiaKERNEL\Errors\Error_Codes.ps1"
. "${env:LIBS_HESTIA}\HestiaKERNEL\Error\Codes.ps1"



Expand Down
2 changes: 1 addition & 1 deletion Shell/libraries/HestiaKERNEL/Number/Is_Number.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#
# You MUST ensure any interaction with the content STRICTLY COMPLIES with
# the permissions and limitations set forth in the license.
. "${LIBS_HESTIA}/HestiaKERNEL/Errors/Error_Codes.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Error/Codes.sh"



Expand Down
2 changes: 1 addition & 1 deletion Shell/libraries/HestiaKERNEL/OS/Is_Command_Alias.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#
# You MUST ensure any interaction with the content STRICTLY COMPLIES with
# the permissions and limitations set forth in the license.
. "${env:LIBS_HESTIA}\HestiaKERNEL\Errors\Error_Codes.ps1"
. "${env:LIBS_HESTIA}\HestiaKERNEL\Error\Codes.ps1"



Expand Down
2 changes: 1 addition & 1 deletion Shell/libraries/HestiaKERNEL/OS/Is_Command_Alias.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#
# You MUST ensure any interaction with the content STRICTLY COMPLIES with
# the permissions and limitations set forth in the license.
. "${LIBS_HESTIA}/HestiaKERNEL/Errors/Error_Codes.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Error/Codes.sh"



Expand Down
2 changes: 1 addition & 1 deletion Shell/libraries/HestiaKERNEL/OS/Is_Command_Available.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#
# You MUST ensure any interaction with the content STRICTLY COMPLIES with
# the permissions and limitations set forth in the license.
. "${env:LIBS_HESTIA}\HestiaKERNEL\Errors\Error_Codes.ps1"
. "${env:LIBS_HESTIA}\HestiaKERNEL\Error\Codes.ps1"



Expand Down
2 changes: 1 addition & 1 deletion Shell/libraries/HestiaKERNEL/OS/Is_Command_Available.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#
# You MUST ensure any interaction with the content STRICTLY COMPLIES with
# the permissions and limitations set forth in the license.
. "${LIBS_HESTIA}/HestiaKERNEL/Errors/Error_Codes.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Error/Codes.sh"



Expand Down
2 changes: 1 addition & 1 deletion Shell/libraries/HestiaKERNEL/OS/Is_Command_Builtin.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#
# You MUST ensure any interaction with the content STRICTLY COMPLIES with
# the permissions and limitations set forth in the license.
. "${env:LIBS_HESTIA}\HestiaKERNEL\Errors\Error_Codes.ps1"
. "${env:LIBS_HESTIA}\HestiaKERNEL\Error\Codes.ps1"



Expand Down
2 changes: 1 addition & 1 deletion Shell/libraries/HestiaKERNEL/OS/Is_Command_Builtin.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#
# You MUST ensure any interaction with the content STRICTLY COMPLIES with
# the permissions and limitations set forth in the license.
. "${LIBS_HESTIA}/HestiaKERNEL/Errors/Error_Codes.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Error/Codes.sh"



Expand Down
2 changes: 1 addition & 1 deletion Shell/libraries/HestiaKERNEL/OS/Is_Command_External.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#
# You MUST ensure any interaction with the content STRICTLY COMPLIES with
# the permissions and limitations set forth in the license.
. "${env:LIBS_HESTIA}\HestiaKERNEL\Errors\Error_Codes.ps1"
. "${env:LIBS_HESTIA}\HestiaKERNEL\Error\Codes.ps1"



Expand Down
2 changes: 1 addition & 1 deletion Shell/libraries/HestiaKERNEL/OS/Is_Command_External.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#
# You MUST ensure any interaction with the content STRICTLY COMPLIES with
# the permissions and limitations set forth in the license.
. "${LIBS_HESTIA}/HestiaKERNEL/Errors/Error_Codes.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Error/Codes.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/OS/Is_Command_Alias.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/OS/Is_Command_Available.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/OS/Is_Command_Builtin.sh"
Expand Down
2 changes: 1 addition & 1 deletion Shell/libraries/HestiaKERNEL/OS/Is_Command_Function.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#
# You MUST ensure any interaction with the content STRICTLY COMPLIES with
# the permissions and limitations set forth in the license.
. "${env:LIBS_HESTIA}\HestiaKERNEL\Errors\Error_Codes.ps1"
. "${env:LIBS_HESTIA}\HestiaKERNEL\Error\Codes.ps1"



Expand Down
2 changes: 1 addition & 1 deletion Shell/libraries/HestiaKERNEL/OS/Is_Command_Function.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#
# You MUST ensure any interaction with the content STRICTLY COMPLIES with
# the permissions and limitations set forth in the license.
. "${LIBS_HESTIA}/HestiaKERNEL/Errors/Error_Codes.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Error/Codes.sh"



Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#
# You MUST ensure any interaction with the content STRICTLY COMPLIES with
# the permissions and limitations set forth in the license.
. "${env:LIBS_HESTIA}\HestiaKERNEL\Errors\Error_Codes.ps1"
. "${env:LIBS_HESTIA}\HestiaKERNEL\Error\Codes.ps1"



Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#
# You MUST ensure any interaction with the content STRICTLY COMPLIES with
# the permissions and limitations set forth in the license.
. "${LIBS_HESTIA}/HestiaKERNEL/Errors/Error_Codes.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Error/Codes.sh"



Expand Down
2 changes: 1 addition & 1 deletion Shell/libraries/HestiaKERNEL/String/Get_First_Character.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#
# You MUST ensure any interaction with the content STRICTLY COMPLIES with
# the permissions and limitations set forth in the license.
. "${LIBS_HESTIA}/HestiaKERNEL/Errors/Error_Codes.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Error/Codes.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/String/To_String_From_Unicode.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Unicode/Get_First_Unicode.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Unicode/To_Unicode_From_String.sh"
Expand Down
2 changes: 1 addition & 1 deletion Shell/libraries/HestiaKERNEL/String/Get_Last_Character.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#
# You MUST ensure any interaction with the content STRICTLY COMPLIES with
# the permissions and limitations set forth in the license.
. "${LIBS_HESTIA}/HestiaKERNEL/Errors/Error_Codes.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Error/Codes.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/String/To_String_From_Unicode.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Unicode/Get_Last_Unicode.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Unicode/To_Unicode_From_String.sh"
Expand Down
2 changes: 1 addition & 1 deletion Shell/libraries/HestiaKERNEL/String/Get_Length_String.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#
# You MUST ensure any interaction with the content STRICTLY COMPLIES with
# the permissions and limitations set forth in the license.
. "${LIBS_HESTIA}/HestiaKERNEL/Errors/Error_Codes.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Error/Codes.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Unicode/Get_Length_Unicode.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Unicode/To_Unicode_From_String.sh"

Expand Down
2 changes: 1 addition & 1 deletion Shell/libraries/HestiaKERNEL/String/Is_Empty_String.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#
# You MUST ensure any interaction with the content STRICTLY COMPLIES with
# the permissions and limitations set forth in the license.
. "${env:LIBS_HESTIA}\HestiaKERNEL\Errors\Error_Codes.ps1"
. "${env:LIBS_HESTIA}\HestiaKERNEL\Error\Codes.ps1"



Expand Down
2 changes: 1 addition & 1 deletion Shell/libraries/HestiaKERNEL/String/Is_Empty_String.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#
# You MUST ensure any interaction with the content STRICTLY COMPLIES with
# the permissions and limitations set forth in the license.
. "${LIBS_HESTIA}/HestiaKERNEL/Errors/Error_Codes.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Error/Codes.sh"



Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#
# You MUST ensure any interaction with the content STRICTLY COMPLIES with
# the permissions and limitations set forth in the license.
. "${env:LIBS_HESTIA}\HestiaKERNEL\Errors\Error_Codes.ps1"
. "${env:LIBS_HESTIA}\HestiaKERNEL\Error\Codes.ps1"
. "${env:LIBS_HESTIA}\HestiaKERNEL\Unicode\Is_Punctuation_Unicode.ps1"
. "${env:LIBS_HESTIA}\HestiaKERNEL\Unicode\To_Unicode_From_String.ps1"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#
# You MUST ensure any interaction with the content STRICTLY COMPLIES with
# the permissions and limitations set forth in the license.
. "${LIBS_HESTIA}/HestiaKERNEL/Errors/Error_Codes.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Error/Codes.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Unicode/Is_Punctuation_Unicode.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Unicode/To_Unicode_From_String.sh"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#
# You MUST ensure any interaction with the content STRICTLY COMPLIES with
# the permissions and limitations set forth in the license.
. "${env:LIBS_HESTIA}\HestiaKERNEL\Errors\Error_Codes.ps1"
. "${env:LIBS_HESTIA}\HestiaKERNEL\Error\Codes.ps1"
. "${env:LIBS_HESTIA}\HestiaKERNEL\Unicode\Is_Whitespace_Unicode.ps1"
. "${env:LIBS_HESTIA}\HestiaKERNEL\Unicode\To_Unicode_From_String.ps1"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#
# You MUST ensure any interaction with the content STRICTLY COMPLIES with
# the permissions and limitations set forth in the license.
. "${LIBS_HESTIA}/HestiaKERNEL/Errors/Error_Codes.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Error/Codes.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Unicode/Is_Whitespace_Unicode.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Unicode/To_Unicode_From_String.sh"

Expand Down
2 changes: 1 addition & 1 deletion Shell/libraries/HestiaKERNEL/String/To_Lowercase_String.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#
# You MUST ensure any interaction with the content STRICTLY COMPLIES with
# the permissions and limitations set forth in the license.
. "${LIBS_HESTIA}/HestiaKERNEL/Errors/Error_Codes.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Error/Codes.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/String/To_String_From_Unicode.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Unicode/To_Lowercase_Unicode.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Unicode/To_Unicode_From_String.sh"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#
# You MUST ensure any interaction with the content STRICTLY COMPLIES with
# the permissions and limitations set forth in the license.
. "${env:LIBS_HESTIA}\HestiaKERNEL\Errors\Error_Codes.ps1"
. "${env:LIBS_HESTIA}\HestiaKERNEL\Error\Codes.ps1"
. "${env:LIBS_HESTIA}\HestiaKERNEL\OS\Get_String_Encoder.ps1"
. "${env:LIBS_HESTIA}\HestiaKERNEL\Unicode\Is_Unicode.ps1"
. "${env:LIBS_HESTIA}\HestiaKERNEL\Unicode\Unicode.ps1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#
# You MUST ensure any interaction with the content STRICTLY COMPLIES with
# the permissions and limitations set forth in the license.
. "${LIBS_HESTIA}/HestiaKERNEL/Errors/Error_Codes.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Error/Codes.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/OS/Get_String_Encoder.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Unicode/Is_Unicode.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Unicode/To_UTF8_From_Unicode.sh"
Expand Down
2 changes: 1 addition & 1 deletion Shell/libraries/HestiaKERNEL/String/To_Titlecase_String.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#
# You MUST ensure any interaction with the content STRICTLY COMPLIES with
# the permissions and limitations set forth in the license.
. "${LIBS_HESTIA}/HestiaKERNEL/Errors/Error_Codes.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Error/Codes.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/String/To_String_From_Unicode.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Unicode/To_Titlecase_Unicode.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Unicode/To_Unicode_From_String.sh"
Expand Down
2 changes: 1 addition & 1 deletion Shell/libraries/HestiaKERNEL/String/To_Uppercase_String.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#
# You MUST ensure any interaction with the content STRICTLY COMPLIES with
# the permissions and limitations set forth in the license.
. "${LIBS_HESTIA}/HestiaKERNEL/Errors/Error_Codes.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Error/Codes.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/String/To_String_From_Unicode.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Unicode/To_Uppercase_Unicode.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Unicode/To_Unicode_From_String.sh"
Expand Down
2 changes: 1 addition & 1 deletion Shell/libraries/HestiaKERNEL/Unicode/Get_First_Unicode.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#
# You MUST ensure any interaction with the content STRICTLY COMPLIES with
# the permissions and limitations set forth in the license.
. "${LIBS_HESTIA}/HestiaKERNEL/Errors/Error_Codes.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Error/Codes.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Unicode/Is_Unicode.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Unicode/Unicode.sh"

Expand Down
2 changes: 1 addition & 1 deletion Shell/libraries/HestiaKERNEL/Unicode/Get_Last_Unicode.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#
# You MUST ensure any interaction with the content STRICTLY COMPLIES with
# the permissions and limitations set forth in the license.
. "${LIBS_HESTIA}/HestiaKERNEL/Errors/Error_Codes.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Error/Codes.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Unicode/Is_Unicode.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Unicode/Unicode.sh"

Expand Down
2 changes: 1 addition & 1 deletion Shell/libraries/HestiaKERNEL/Unicode/Get_Length_Unicode.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#
# You MUST ensure any interaction with the content STRICTLY COMPLIES with
# the permissions and limitations set forth in the license.
. "${LIBS_HESTIA}/HestiaKERNEL/Errors/Error_Codes.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Error/Codes.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Unicode/Is_Unicode.sh"


Expand Down
2 changes: 1 addition & 1 deletion Shell/libraries/HestiaKERNEL/Unicode/Has_Any_Unicode.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#
# You MUST ensure any interaction with the content STRICTLY COMPLIES with
# the permissions and limitations set forth in the license.
. "${env:LIBS_HESTIA}\HestiaKERNEL\Errors\Error_Codes.ps1"
. "${env:LIBS_HESTIA}\HestiaKERNEL\Error\Codes.ps1"
. "${env:LIBS_HESTIA}\HestiaKERNEL\Unicode\Is_Unicode.ps1"


Expand Down
2 changes: 1 addition & 1 deletion Shell/libraries/HestiaKERNEL/Unicode/Has_Any_Unicode.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#
# You MUST ensure any interaction with the content STRICTLY COMPLIES with
# the permissions and limitations set forth in the license.
. "${LIBS_HESTIA}/HestiaKERNEL/Errors/Error_Codes.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Error/Codes.sh"
. "${LIBS_HESTIA}/HestiaKERNEL/Unicode/Is_Unicode.sh"


Expand Down
2 changes: 1 addition & 1 deletion Shell/libraries/HestiaKERNEL/Unicode/Has_Unicode.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#
# You MUST ensure any interaction with the content STRICTLY COMPLIES with
# the permissions and limitations set forth in the license.
. "${env:LIBS_HESTIA}\HestiaKERNEL\Errors\Error_Codes.ps1"
. "${env:LIBS_HESTIA}\HestiaKERNEL\Error\Codes.ps1"
. "${env:LIBS_HESTIA}\HestiaKERNEL\Unicode\Is_Unicode.ps1"


Expand Down
Loading

0 comments on commit d532b47

Please sign in to comment.