Enforce conventions

This commit is contained in:
Andrea Cardaci 2020-10-24 12:43:55 +02:00
parent 373f57fc18
commit 3409aa0949
2 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
--- ---
functions: functions:
shell: shell:
- code: ghc -e 'System.Process.callCommand "/bin/bash"' - code: ghc -e 'System.Process.callCommand "/bin/sh"'
sudo: sudo:
- code: sudo ghc -e 'System.Process.callCommand "/bin/bash"' - code: sudo ghc -e 'System.Process.callCommand "/bin/sh"'
--- ---

View File

@ -3,9 +3,9 @@ functions:
shell: shell:
- code: | - code: |
ghci ghci
Prelude> System.Process.callCommand "/bin/bash" System.Process.callCommand "/bin/sh"
sudo: sudo:
- code: | - code: |
sudo ghci sudo ghci
Prelude> System.Process.callCommand "/bin/bash" System.Process.callCommand "/bin/sh"
--- ---