diff options
| author | Melody Horn <melody@boringcactus.com> | 2021-03-25 21:21:57 -0600 | 
|---|---|---|
| committer | Melody Horn <melody@boringcactus.com> | 2021-03-25 21:21:57 -0600 | 
| commit | c4867335ab4f0222d22500d60d469823d0c5f999 (patch) | |
| tree | 60b8d45e63da0a67560e27911e46eaba6d58ea05 | |
| parent | feb30c3cd6365d7a80a870a13a8bee60d17f2a7a (diff) | |
| download | yapymake-c4867335ab4f0222d22500d60d469823d0c5f999.tar.gz yapymake-c4867335ab4f0222d22500d60d469823d0c5f999.zip  | |
make internal newlines in command lines visible
| -rw-r--r-- | yapymake/makefile/__init__.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/yapymake/makefile/__init__.py b/yapymake/makefile/__init__.py index 483b071..09dcb93 100644 --- a/yapymake/makefile/__init__.py +++ b/yapymake/makefile/__init__.py @@ -446,7 +446,7 @@ class CommandLine:              '-' if self.ignore_errors else '',              '@' if self.silent else '',              '+' if self.always_execute else '', -            str(self.execution_line) +            str(self.execution_line).replace('\n', '↵\n')          ])      def execute(self, file: Makefile, current_target: 'Target') -> None:  |