diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2020-10-07 08:29:32 +0200 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2020-10-07 08:32:55 +0200 |
| commit | 06f6eeee3a7aaea881d7b399454762f65c8cec87 (patch) | |
| tree | 5fcdf9a6283d61069c1226c4876c99af0da2ab83 /src/config.py | |
| parent | 058491e35baa8bc73e14b48ceb765a3fe3c07e1f (diff) | |
| download | minishell_test-06f6eeee3a7aaea881d7b399454762f65c8cec87.tar.gz minishell_test-06f6eeee3a7aaea881d7b399454762f65c8cec87.tar.bz2 minishell_test-06f6eeee3a7aaea881d7b399454762f65c8cec87.zip | |
Added Linux exit status and output conversion to macos
Diffstat (limited to 'src/config.py')
| -rw-r--r-- | src/config.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/config.py b/src/config.py index 0390194..e77a94d 100644 --- a/src/config.py +++ b/src/config.py @@ -6,7 +6,7 @@ # By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2020/07/15 18:24:19 by charles #+# #+# # -# Updated: 2020/10/06 17:06:17 by cacharle ### ########.fr # +# Updated: 2020/10/07 08:07:25 by charles ### ########.fr # # # # ############################################################################ # @@ -93,3 +93,5 @@ REFERENCE_ERROR_BEGIN = REFERENCE_PATH + ": line 0: " TERM_COLS = shutil.get_terminal_size().columns if TERM_COLS < 40: raise RuntimeError("You're terminal isn't wide enough") + +PLATFORM = os.uname().sysname |
