diff options
author | Andinus <andinus@nand.sh> | 2020-08-28 01:18:31 +0530 |
---|---|---|
committer | Andinus <andinus@nand.sh> | 2020-08-28 01:18:31 +0530 |
commit | 179bf59d8735886be89ec8debb903c1498d65831 (patch) | |
tree | 840d6ee4882a8e2ac014cfebd0fffea6c28cb0fd | |
parent | 22d19a2a3bab015cd6dd1cde771a844a215011c7 (diff) | |
download | lyra-179bf59d8735886be89ec8debb903c1498d65831.tar.gz |
Fix logical error
-rwxr-xr-x | scripts/kirch.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kirch.sh b/scripts/kirch.sh index c975adc..cb79343 100755 --- a/scripts/kirch.sh +++ b/scripts/kirch.sh @@ -1,6 +1,6 @@ #!/bin/sh -mkdir /tmp \ +mkdir -p /tmp \ && git -C /tmp clone https://github.com/JKirchartz/fortunes.git kirch \ && cd /tmp/kirch && rm -r README.md LICENSE Makefile bin \ && cp -r /tmp/kirch/* $HOME/fortunes/ |